forked from remoteoss/json-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
30 lines (30 loc) · 810 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
{
"root": true,
"extends": ["eslint:recommended", "prettier"],
"plugins": ["import", "jest", "sort-keys", "unused-imports"],
"parser": "babel-eslint",
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"rules": {
"jest/no-focused-tests": "error",
"curly": ["error", "multi-line"],
"arrow-body-style": 0,
"default-case": 0,
"import/order": [
"warn",
{
"groups": ["builtin", "external", "parent"],
"newlines-between": "always",
"alphabetize": {
"order": "asc" /* sort in ascending order. Options: ['ignore', 'asc', 'desc'] */,
"caseInsensitive": true /* ignore case. Options: [true, false] */
}
}
],
"no-unused-vars": ["error", { "ignoreRestSiblings": true }]
}
}