-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
23 lines (23 loc) · 834 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
{
"extends": ["react-app", "eslint-config-airbnb"],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/destructuring-assignment": 0,
"max-len": [1, 120, 2, {"ignoreComments": true}],
"dot-notation": 0,
"object-curly-newline": ["Error", {"multiline": true, "minProperties": 4}],
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/label-has-for": 0,
"padded-blocks": 0,
"prefer-template": 0,
"prefer-destructuring": 0,
"spaced-comment": 0,
"import/no-extraneous-dependencies": [2, { "devDependencies": true }],
"no-underscore-dangle": 0,
"no-unused-vars": [2, {"vars": "all", "varsIgnorePattern": "^_", "argsIgnorePattern": "^_"}],
"react/prefer-stateless-function": 0,
"no-plusplus": 0,
"no-useless-escape": 0,
"func-names": 0
}
}