blob: 554498f99194e42a4adfd1934a2117ae8d9af210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* see https://github.com/airbnb/javascript for lint rules */
{
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"rules": {
"import/no-extraneous-dependencies": ["off"],
"import/extensions": ["off"],
"import/no-unresolved": ["off"],
"react/jsx-filename-extension": ["off"],
"jsx-quotes": ["error", "prefer-single"],
"no-undef": ["off"],
"comma-dangle": ["off"]
}
}
|