This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
68 lines (68 loc) · 2.54 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module.exports = {
env: { browser: true, node: true, jest: true },
extends: [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:react/recommended",
"plugin:flowtype/recommended",
"plugin:import/recommended",
"problems",
"plugin:prettier/recommended",
"prettier/flowtype",
"prettier/react",
],
plugins: ["jest", "import-order-alphabetical", "react-hooks"],
parser: "babel-eslint",
settings: {
"import/resolver": { webpack: { config: `${__dirname}/webpack.config.js` } },
},
globals: {
RAVEN_URL: false, // injected via webpack
GIT_INFO: false, // injected via webpack
CURRENT_VERSION: false, // injected via webpack
MINIMUM_CHROME_VERSION: false, // injected via webpack
},
rules: {
curly: "error",
"prettier/prettier": "error",
"no-console": ["error", { allow: ["warn", "error", "debug"] }],
"no-unused-vars": ["error", { args: "none", varsIgnorePattern: "^_" }],
"flowtype/no-unused-expressions": "error",
"no-underscore-dangle": ["error", { allowAfterThis: true }],
"react/prop-types": "off", // We use Flow instead.
"no-useless-computed-key": "off", // https://github.com/facebook/flow/issues/380#issuecomment-224380551
yoda: "off", // https://github.com/RyanZim/eslint-config-problems/pull/1 and https://github.com/eslint/eslint/issues/10591
// Some good ones that people really should be adding to import/recommended:
"import/first": "error",
"import/no-self-import": "error",
"import/no-useless-path-segments": "error",
"import/no-mutable-exports": "error",
"import/newline-after-import": "error",
"import/no-duplicates": "error", // https://github.com/benmosher/eslint-plugin-import/issues/242#issuecomment-230118951
"no-duplicate-imports": "off", // False positives on flow type imports, so we use import/no-duplicates instead which handles them correctly.
// Group imports into two groups: packages and files. Sort alphabetically
// within those groups.
"import-order-alphabetical/order": [
"error",
{
"newlines-between": "always",
groups: [
["builtin", "external"],
["internal", "parent", "sibling", "index"],
],
},
],
// TODO(JP): Fix this instead of disabling it:
"import/no-named-as-default": "off",
"prefer-arrow-callback": ["error", { allowNamedFunctions: true }],
"react-hooks/rules-of-hooks": "error",
},
overrides: [
{
files: "docs/src/jsx/**/*.js",
rules: {
"import/no-unresolved": "off",
},
},
],
};