-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc.js
34 lines (34 loc) · 1.01 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
module.exports = {
root: true,
extends: [
// By extending from a plugin config, we can get recommended rules without having to add them manually.
'eslint:recommended',
"plugin:react/recommended",
'plugin:import/recommended',
'plugin:jsx-a11y/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/jsx-runtime',
],
settings: {
react: {
// Tells eslint-plugin-react to automatically detect the version of React to use.
version: "detect",
},
// Tells eslint how to resolve imports
'import/resolver': {
node: {
paths: ["src"],
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
rules: {
camelcase: "warn",
'@typescript-eslint/no-inferrable-types': "off",
quotes: ["error", "double"],
semi: ["error", "always"],
indent: ["error", 4],
'no-multi-spaces': ["error"],
'max-len': ["warn", 120],
},
};