forked from maxthrottleup/gatsby-plugin-gravity-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
25 lines (25 loc) · 618 Bytes
/
Copy path.eslintrc
File metadata and controls
25 lines (25 loc) · 618 Bytes
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
{
"parser": "babel-eslint",
"settings": {
"react": {
"version": "latest"
}
},
"env": {
"browser": true,
"amd": true,
"node": true
},
"rules": {
"strict": 0,
"import-order-alphabetical/order": "error",
"react/jsx-sort-props": "warn",
"react/sort-prop-types": "warn",
"sort-destructure-keys/sort-destructure-keys": "warn"
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"plugins": [
"eslint-plugin-import-order-alphabetical",
"sort-destructure-keys"
]
}