-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc
30 lines (30 loc) · 899 Bytes
/
.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
{
"extends": ["airbnb"],
"plugins": [
"react",
"jsx-a11y",
"import"
],
"parser": "babel-eslint",
"rules": {
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
"no-use-before-define": "off",
"function-paren-newline": "off",
"global-require": 0,
"import/prefer-default-export": "off",
"class-methods-use-this": "off",
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"max-len": ["error", { "code": 120 }],
"react/no-unused-prop-types": "off",
"import/no-unresolved": "off",
"react/no-unescaped-entities": "off",
"no-underscore-dangle": "off",
"import/extensions": "off",
"react/prop-types": "off",
"no-return-assign": "off",
"operator-linebreak": "off",
"react/jsx-one-expression-per-line": "off",
"react/destructuring-assignment": "off"
}
}