-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
36 lines (36 loc) · 1 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
{
"extends": ["react-app", "airbnb", "prettier"],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js",".jsx"] }],
"no-useless-escape": "off",
"no-script-url": "off",
"jsx-a11y/anchor-has-content": "off",
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": "off",
"no-template-curly-in-string": "off",
"react/prop-types": 0,
"react/prefer-stateless-function": 0,
"react/jsx-one-expression-per-line": 0,
"linebreak-style": 0,
"react/jsx-wrap-multilines": 0,
"react/no-danger": 0,
"react/forbid-prop-types": 0,
"no-use-before-define": 0,
"no-param-reassign": 0,
"import/no-unresolved": 0,
"no-console": 0,
"no-nested-ternary": 0,
"import/no-named-as-default": 0,
"no-lone-blocks": 0,
"prefer-destructuring": 0,
"no-restricted-globals": 0,
"dot-notation": 0,
"no-underscore-dangle": 0,
"prefer-template": 0
},
"parserOptions": {
"ecmaFeatures": {
"legacyDecorators": true
}
}
}