This repository was archived by the owner on Nov 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.eslintrc
56 lines (56 loc) · 1.75 KB
/
.eslintrc
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
{
"extends": [
"amo",
"plugin:amo/typescript",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"env": {
"browser": true,
},
"rules": {
"import/no-extraneous-dependencies": ["error", {
"devDependencies": [
"**/*.spec.*",
"src/@types/**/*",
"src/setupTests.tsx",
"src/test-helpers.tsx",
"**/*.stories.tsx",
"stories/**/*.tsx"
]
}
],
// We use `.tsx` instead of `.jsx` for files with JSX inside.
"react/jsx-filename-extension": ["error", {
"extensions": [".tsx"]
}
],
// We decided to prefer types over interfaces.
"@typescript-eslint/prefer-interface": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
// This rule conflicts with our convention.
"jest/valid-describe": "off",
// Report an error when a variable is not used.
"@typescript-eslint/no-unused-vars": "error",
// The beauty of TS is that it infers types quite well, so let's not write
// too much code.
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-module-boundary-types": "off",
// See: https://github.com/typescript-eslint/typescript-eslint/issues/2502
"no-use-before-define": "off",
"@typescript-eslint/ban-ts-comment": ["error", {
"ts-expect-error": "allow-with-description"
}],
// TODO: re-enable the rule once it gets fixed for TypeScript and enums.
// See: https://github.com/typescript-eslint/typescript-eslint/issues/325
"no-shadow": "off",
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts", ".tsx"]
}
}
}
}