mirror of https://github.com/rancher/ui.git
60 lines
1.0 KiB
JavaScript
60 lines
1.0 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 6,
|
|
sourceType: 'module'
|
|
},
|
|
extends: 'eslint:recommended',
|
|
globals: {
|
|
"document": true,
|
|
"window": true,
|
|
"-Promise": true,
|
|
"jQuery": true,
|
|
"$": true,
|
|
"moment": true,
|
|
"c3": true,
|
|
"d3": true,
|
|
"Terminal": true,
|
|
"Prism": true,
|
|
"Ui": true,
|
|
"dagreD3": true,
|
|
"async": true,
|
|
"AWS": true,
|
|
"Identicon": true,
|
|
"md5": true,
|
|
"_": true,
|
|
"NoVNC": true,
|
|
"commonmark": true,
|
|
"Stripe": true
|
|
},
|
|
env: {
|
|
browser: true,
|
|
"es6": true
|
|
},
|
|
rules: {
|
|
"no-cond-assign": [
|
|
2,
|
|
"except-parens"
|
|
],
|
|
"curly": 2,
|
|
"no-console": 0,
|
|
"no-debugger": 0,
|
|
"eqeqeq": 2,
|
|
"no-eval": 2,
|
|
"guard-for-in": 0,
|
|
"wrap-iife": 0,
|
|
"linebreak-style": 0,
|
|
"new-cap": 0,
|
|
"no-caller": 2,
|
|
"no-empty": 0,
|
|
"no-extra-boolean-cast": 0,
|
|
"no-new": 0,
|
|
"no-plusplus": 0,
|
|
"no-undef": 2,
|
|
"dot-notation": 0,
|
|
"strict": 0,
|
|
"no-eq-null": 2,
|
|
"no-unused-vars": 2
|
|
}
|
|
};
|