forked from clauderic/react-sortable-hoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
23 lines (23 loc) · 746 Bytes
/
.eslintrc.json
File metadata and controls
23 lines (23 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": ["plugin:shopify/react", "plugin:prettier/recommended"],
"rules": {
"no-process-env": "off",
"no-lonely-if": "off",
"no-undefined": "off",
"no-param-reassign": "off",
"no-mixed-operators": "off",
"no-misleading-character-class": "off",
"require-atomic-updates": "off",
"prefer-object-spread": "off",
"lines-around-comment": "off",
"function-paren-newline": "off",
"promise/catch-or-return": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/no-unused-prop-types": "off",
"react/no-string-refs": 1,
"react/no-deprecated": 1,
"shopify/binary-assignment-parens": "off",
"sort-class-members/sort-class-members": "off"
}
}