-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
24 lines (24 loc) · 790 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
{
"extends": ["airbnb", "prettier", "prettier/react"],
"parser": "babel-eslint",
"plugins": ["react", "jsx-a11y", "import", "prettier"],
"rules": {
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"func-names": 0,
"import/extensions": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"import/no-unresolved": 1,
"jsx-a11y/no-static-element-interactions": 0,
"no-extra-boolean-cast": 0,
"no-plusplus": 0,
"no-sequences": 0,
"no-script-url": 0,
"no-unused-vars": 1,
"react/no-did-update-set-state": 0,
"react/jsx-filename-extension": 0,
"react/prop-types": 0,
"spaced-comment": 0
}
}