]> git.ipfire.org Git - ipfire.org.git/blame - src/scss/bootstrap-4.0.0-alpha.6/js/tests/.eslintrc.json
Introduce autotools
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / js / tests / .eslintrc.json
CommitLineData
91e44d91
S
1{
2 "env": {
3 "qunit": true,
4 "es6": false
5 },
6 "globals": {
7 "Util": false
8 },
9 "parserOptions": {
10 "ecmaVersion": 5,
11 "sourceType": "script"
12 },
13 "extends": "../.eslintrc.json",
14 "rules": {
15 // Best Practices
16 "consistent-return": "off",
17 "no-alert": "off",
18 "no-console": "off",
19 "no-empty-function": "off",
20 "no-extend-native": "off",
21 "no-magic-numbers": "off",
22 "vars-on-top": "off",
23
24 // Strict Mode
25 "strict": "off",
26
27 // NodeJS and CommonJS
28 "global-require": "off",
29 "no-process-env": "off",
30 "no-process-exit": "off",
31
32 // Stylistic Issues
33 "brace-style": "off",
34 "func-style": "off",
35 "max-statements-per-line": "off",
36 "object-curly-newline": "off",
37 "object-property-newline": "off",
38 "spaced-comment": "off",
39
40 // ECMAScript 6
41 "no-var": "off",
42 "object-shorthand": "off",
43 "prefer-arrow-callback": "off",
44 "prefer-template": "off",
45 "prefer-rest-params": "off"
46 }
47}