-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.json
32 lines (32 loc) Β· 948 Bytes
/
.eslintrc.json
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
{
"extends": ["airbnb", "prettier", "plugin:node/recommended"],
"plugins": ["prettier"],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"no-unused-vars": "warn",
"no-console": "off",
"react/jsx-filename-extension": "off",
"node/no-unsupported-features/es-syntax": "off",
"no-undef": "off",
"no-alert": "off",
"func-names": "off",
"node/no-missing-import": "off",
"no-restricted-syntax": "off",
"no-await-in-loop": "off",
"react/prop-types": "off",
"react/jsx-one-expression-per-line": "off",
"import/no-unresolved": "off",
"react/no-array-index-key": "off",
"no-nested-ternary": "off"
}
}