forked from hexenq/kuroshiro-analyzer-kuromoji
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
32 lines (32 loc) · 848 Bytes
/
.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
{
"parser": "babel-eslint",
"rules": {
"max-len": 0,
"no-plusplus": 0,
"comma-dangle": ["error", "never"],
"brace-style": ["error", "stroustrup"],
"no-console": 0,
"padded-blocks": 0,
"indent": ["error", 4, {"SwitchCase": 1}],
"spaced-comment": 1,
"quotes": ["error", "double", { "allowTemplateLiterals": true }],
"import/prefer-default-export": "off",
"consistent-return": 0,
"no-useless-escape": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"no-param-reassign": 0,
"no-case-declarations": 0,
"prefer-destructuring": 0,
"func-names": 0,
"camelcase": 0,
"no-cond-assign": 0
},
"extends": "airbnb-base",
"env": {
"es6": true,
"node": true,
"browser": true,
"jest": true
}
}