free-music-by-eatme
/
Milkdrop-Butterchurn-for-Web-v2.6.7.1e-complete-by-Geiss-Flexi-JBerg-EatMe
Public
forked from jberg/butterchurn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (38 loc) · 1.4 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
{
"extends": "airbnb",
"rules": {
"arrow-parens": ["error", "always"],
"array-bracket-spacing": ["error", "never"],
"block-spacing": ["error", "always"],
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
"camelcase": ["error", { "properties": "never" }],
"comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "only-multiline",
"exports": "only-multiline",
"functions": "ignore"
}],
"dot-location": ["error", "property"],
"dot-notation": ["error", { "allowKeywords": true }],
"eqeqeq": ["error", "always", { "null": "ignore" }],
"function-paren-newline": ["warn", "consistent"],
"indent": "off",
"indent-legacy": ["error", 2],
"max-len": ["error", 100],
"no-confusing-arrow": ["error", { "allowParens": true }],
"no-console": ["warn", { "allow": ["warn", "error"] }],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-underscore-dangle": "off",
"no-unneeded-ternary": ["error", { "defaultAssignment": false }],
"object-curly-spacing": ["error", "always"],
"padded-blocks": ["warn", { blocks: 'never', classes: 'never', switches: 'never' }],
"prefer-destructuring": ["off"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"space-before-function-paren": ["error", "always"]
},
"env": {
"browser": true
}
}