forked from HathorNetwork/hathor-wallet-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
46 lines (46 loc) · 1.43 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"react"
],
"rules": {
"arrow-parens": ["error", "always"],
"import/no-named-as-default": 0,
"import/prefer-default-export": 0,
"jsx-quotes": ["error", "prefer-single"],
"react/prop-types": 0,
"react/destructuring-assignment": 0,
"react/require-default-props": 0,
"react/jsx-one-expression-per-line": 0,
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
"react/jsx-closing-tag-location": 0,
"react/sort-comp": 0,
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"comma-dangle": 0,
"object-curly-newline": ["error", {"ObjectPattern": { "multiline": true }}],
"eqeqeq": [1, "allow-null"],
"no-continue": 0,
"no-cond-assign": 1,
"no-constant-condition": 0,
"no-control-regex": 1,
"no-debugger": 1,
"no-dupe-keys": 1,
"no-ex-assign": 1,
"no-extra-boolean-cast": 1,
"no-func-assign": 1,
"no-regex-spaces": 1,
"no-unreachable": 1,
"no-fallthrough": 1,
"no-lone-blocks": 1,
"no-delete-var": 1,
"no-shadow": 1,
"no-shadow-restricted-names": 1,
"no-undef": 2,
"no-undef-init": 1,
"no-use-before-define": 0,
"no-unused-vars": [1, {"vars": "all", "args": "none"}],
"no-underscore-dangle": 0,
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
}
}