forked from clayrisser/react-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
27 lines (27 loc) · 683 Bytes
/
Copy path.eslintrc
File metadata and controls
27 lines (27 loc) · 683 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
26
27
{
"extends": ["airbnb", "prettier"],
"parser": "babel-eslint",
"rules": {
"arrow-body-style": "off",
"class-methods-use-this": "off",
"default-case": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-shadow": "off",
"no-underscore-dangle": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/no-string-refs": "off",
"react/prefer-stateless-function": "off",
"no-unused-vars": [
"warn",
{
"args": "after-used",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true,
"vars": "all"
}
],
"comma-dangle": ["error", "never"]
}
}