UNPKG

1.08 kBPlain TextView Raw
1{
2 "rules": {
3 "quotes": [
4 2,
5 "single"
6 ],
7 "linebreak-style": [
8 2,
9 "unix"
10 ],
11 "semi": [
12 2,
13 "always"
14 ],
15 "no-console": 0,
16 "max-len": [1, 160],
17 "quote-props": [1, "consistent-as-needed"],
18 "no-cond-assign": [2, "except-parens"],
19 "radix": 0,
20 "keyword-spacing": 0,
21 "one-var": 0,
22 "func-names": 0,
23 "padded-blocks": 0,
24 "computed-property-spacing": [2, "always"],
25 "space-infix-ops": 0,
26 "no-unused-vars": [1, {"vars": "local", "args": "none"}],
27 "space-before-function-paren": 2,
28 "space-in-parens": [2, "always"],
29 "key-spacing": [2, { "align": "colon", "beforeColon": true, "afterColon": true }],
30 "brace-style": [2, "allman", { "allowSingleLine": true }]
31 },
32 "env": {
33 "es6": true,
34 "browser": true,
35 "node": true
36 },
37 "globals": {
38 "describe": true,
39 "it": true
40 },
41 "extends": "airbnb/base"
42}