UNPKG

1.28 kBPlain TextView Raw
1{
2 "ecmaVersion": 6,
3 "env": {
4 "browser": true,
5 "builtin": true,
6 "es6": true,
7 "jasmine": true,
8 "jquery": true,
9 "mocha": true,
10 "node": true
11 },
12 "globals": {
13 "Foundation": true
14 },
15 "parserOptions": {
16 "ecmaFeatures": {
17 "impliedStrict": true,
18 "jsx": false
19 },
20 "ecmaVersion": 6,
21 "sourceType": "module"
22 },
23 "rules": {
24 "block-scoped-var": 2,
25 "camelcase": 2,
26 "comma-style": [2, "last"],
27 "curly": [0, "all"],
28 "dot-notation": [
29 2,
30 {
31 "allowKeywords": true
32 }
33 ],
34 "eqeqeq": [2, "allow-null"],
35 "guard-for-in": 2,
36 "new-cap": 2,
37 "no-bitwise": 2,
38 "no-caller": 2,
39 "no-cond-assign": [2, "except-parens"],
40 "no-debugger": 2,
41 "no-empty": 2,
42 "no-eval": 2,
43 "no-extend-native": 2,
44 "no-extra-parens": 1,
45 "no-irregular-whitespace": 2,
46 "no-iterator": 2,
47 "no-loop-func": 2,
48 "no-multi-str": 2,
49 "no-new": 2,
50 "no-plusplus": 0,
51 "no-proto": 2,
52 "no-script-url": 2,
53 "no-sequences": 2,
54 "no-shadow": 1,
55 "no-undef": 2,
56 "no-unused-vars": 1,
57 "no-with": 2,
58 "quotes": 0,
59 "radix" : 2,
60 "semi": [0, "never"],
61 "strict": [1, "global"],
62 "valid-typeof": 2,
63 "wrap-iife": [2, "inside"]
64 }
65}