-
Notifications
You must be signed in to change notification settings - Fork 20
/
.eslintrc.js
37 lines (37 loc) · 1.03 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
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
extends: ["react-app", "plugin:prettier/recommended"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2019,
sourceType: "module",
},
plugins: ["react"],
rules: {
"comma-dangle": 0,
"arrow-body-style": ["off"],
"arrow-parens": ["error", "as-needed"],
indent: ["error", 4, { SwitchCase: 1 }],
"object-curly-newline": ["error", { consistent: true }],
quotes: ["error", "double", { avoidEscape: true }],
"react/forbid-prop-types": ["error", { forbid: ["any"] }],
"react/jsx-filename-extension": [1, { extensions: [".js", ".jsx"] }],
"react/jsx-indent-props": ["error", 4],
"react/jsx-props-no-spreading": [
"error",
{
custom: "ignore",
},
],
},
};