-
Notifications
You must be signed in to change notification settings - Fork 25
/
.eslintrc.js
60 lines (60 loc) · 2.75 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
module.exports = {
parser: "@typescript-eslint/parser", // Specifies the ESLint parser
parserOptions: {
project: ["./tsconfig.json", "./sites/public/tsconfig.json", "./sites/partners/tsconfig.json"],
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: "module", // Allows for the use of imports
tsconfigRootDir: ".",
},
plugins: ["react", "@typescript-eslint"],
extends: [
"eslint:recommended", // the set of rules which are recommended for all projects by the ESLint Team
"plugin:@typescript-eslint/eslint-recommended", // conflict resolution between above and below rulesets.
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from the @typescript-eslint/eslint-plugin
"plugin:@typescript-eslint/recommended-requiring-type-checking", // additional rules that take a little longer to run
"plugin:import/errors", // check for imports not resolving correctly
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:react-hooks/recommended", // Make sure we follow https://reactjs.org/docs/hooks-rules.html
"plugin:jsx-a11y/recommended",
"plugin:prettier/recommended", // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
],
rules: {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
"@typescript-eslint/no-var-requires": "off",
"react/jsx-uses-vars": "warn",
"react/jsx-uses-react": "warn",
"@typescript-eslint/restrict-template-expressions": [
"error",
{
allowNumber: true,
allowAny: true,
},
],
// These rules catches various usecases of variables typed as "any", since they won't be flagged by the TS
// compiler and thus are potential sources of issues. The current codebase has too many uses of `any` to make
// these effective rules though, so disabling them for now.
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/ban-ts-comment": "off",
},
ignorePatterns: [
"node_modules",
"storybook-static",
".next",
"dist",
"api",
"migration/",
"**/*.stories.tsx",
"**/.eslintrc.js",
"sentry-example-page.js",
"sentry-example-api.js",
],
}