forked from wix-incubator/react-native-zss-rich-text-editor
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc
33 lines (33 loc) · 1.04 KB
/
.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
31
32
33
{
"extends": ["airbnb", "prettier", "prettier/flowtype", "prettier/react"],
"parser": "babel-eslint",
"rules": {
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
"global-require": "off",
"no-console": "off",
"import/no-extraneous-dependencies": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"jsx-a11y/anchor-is-valid": "off",
"no-underscore-dangle": "off",
"prefer-promise-reject-errors": "off",
"no-nested-ternary": "off",
"react/no-multi-comp": "off",
"import/newline-after-import": "off",
"spaced-comment": "off",
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"import/first": "off",
"class-methods-use-this": "off",
"prefer-destructuring": "off",
"consistent-return": "off",
"import/prefer-default-export": "off",
"react/no-unescaped-entities": "off",
"react/sort-comp": "off",
"import/no-named-as-default":"off",
"react/forbid-prop-types": "off"
},
"globals": {
"fetch": true
}
}