generated from Quang7hong81/Bitcoin-Wallet---THONG-NGO
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
42 lines (42 loc) · 1.26 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
{
"extends": ["airbnb-base", "plugin:flowtype/recommended"],
"parser": "babel-eslint",
"rules": {
"flowtype/space-after-type-colon": 0,
"flowtype/semi": [2, "always"],
"flowtype/object-type-delimiter": [2, "comma"],
"indent": ["error", 2, { "ignoredNodes": ["ConditionalExpression"], "SwitchCase": 1 }],
"import/prefer-default-export": 0,
"prefer-template": 0,
"key-spacing": 0,
"max-len": 0,
"no-console": 0,
"radix": 0,
"global-require": 0,
"arrow-body-style": 0,
"arrow-parens": 0,
"consistent-return": 0,
"quote-props": 0,
"no-bitwise": 0,
"no-nested-ternary": 0,
"no-multi-spaces": 0,
"no-unused-expressions": 0,
"no-case-declarations": 0,
"newline-per-chained-call": 0,
"class-methods-use-this": 0,
"object-curly-spacing": ["error", "always", { "objectsInObjects": false }],
"import/no-extraneous-dependencies": [2, { devDependencies: true }],
"no-unused-vars": [2, {"varsIgnorePattern": "Columns|VerificationData" }],
"new-cap": [2, { "newIsCapExceptions": [ "hmac" ] }],
"object-curly-newline": 0
},
"globals": {
"window": true,
"document": true,
"describe": true,
"expect": true,
"test": true,
"jest": true
},
"plugins": ["flowtype"]
}