OSDN Git Service

BugTrack/2520 Remove spaces between heading text and dagger
[pukiwiki/pukiwiki.git] / .eslintrc.json
1 {
2     "extends": ["airbnb"],
3     "plugins": [],
4     "parserOptions": {
5         "sourceType": "script"
6     },
7     "env": {"browser": true},
8     "globals": {},
9     "rules": {
10         "no-console": 0,
11         "no-inner-declarations": "warn",
12         "no-var": 0,
13         "vars-on-top": 0,
14         "prefer-template": 0,
15         "prefer-arrow-callback": 0,
16         "semi": 0,
17         "space-before-function-paren": 0,
18         "no-plusplus": 0,
19         "prefer-destructuring": 0,
20         "no-continue": 0,
21         "func-names": 0,
22         "function-paren-newline": 0,
23         "comma-dangle": 0,
24         "object-shorthand": 0,
25         "object-curly-spacing": 0,
26         "operator-assignment": 0,
27         "no-multi-assign": 0,
28         "no-param-reassign": ["warn", { "props": false }],
29         "strict": ["error", "function"],
30         "lines-around-directive": 0,
31         "no-cond-assign": ["error", "except-parens"]
32     }
33 }
34