forked from processing/p5.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
54 lines (54 loc) · 1.24 KB
/
.eslintrc.json
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
47
48
49
50
51
52
53
54
{
"env": {
"node": true,
"browser": true,
"amd": true,
"es6": true
},
"globals": {
"p5": true
},
"root": true,
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
"no-cond-assign": [2, "except-parens"],
"eqeqeq": ["error", "smart"],
"no-use-before-define": [
2,
{
"functions": false
}
],
"new-cap": 0,
"no-caller": 2,
"no-undef": 0,
"no-unused-vars": ["error", { "args": "none" }],
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-console": "off",
"max-len": ["error", {
"code": 80,
"ignoreComments": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}],
"indent": ["error", 2, {
"SwitchCase": 1
}],
"semi": ["error", "always"],
"quotes": ["error", "single", {
"avoidEscape": true
}],
"comma-dangle": ["error", "never"],
"object-curly-spacing": ["error", "always"],
"arrow-parens": ["error", "as-needed"],
"linebreak-style": ["error", "unix"],
"no-trailing-spaces": ["error"],
"no-prototype-builtins": "off",
"no-async-promise-executor": "off"
}
}