mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
80 lines
2.0 KiB
JavaScript
80 lines
2.0 KiB
JavaScript
|
module.exports = {
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true,
|
||
|
"jasmine": true,
|
||
|
"amd": true
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"parser": "babel-eslint",
|
||
|
"parserOptions": {
|
||
|
"allowImportExportEverywhere": true,
|
||
|
"ecmaVersion": 2015,
|
||
|
"ecmaFeatures": {
|
||
|
"impliedStrict": true
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-bitwise": "error",
|
||
|
"curly": "error",
|
||
|
"eqeqeq": "error",
|
||
|
"guard-for-in": "error",
|
||
|
"no-extend-native": "error",
|
||
|
"no-inner-declarations": "off",
|
||
|
"no-use-before-define": ["error", "nofunc"],
|
||
|
"no-caller": "error",
|
||
|
"no-sequences": "error",
|
||
|
"no-irregular-whitespace": "error",
|
||
|
"no-new": "error",
|
||
|
"no-shadow": "error",
|
||
|
"no-undef": "error",
|
||
|
"no-unused-vars": [
|
||
|
"error",
|
||
|
{
|
||
|
"vars": "all",
|
||
|
"args": "none"
|
||
|
}
|
||
|
],
|
||
|
"no-console": "off",
|
||
|
"no-trailing-spaces": "error",
|
||
|
"space-before-function-paren": [
|
||
|
"error",
|
||
|
{
|
||
|
"anonymous": "always",
|
||
|
"asyncArrow": "always",
|
||
|
"named": "never",
|
||
|
}
|
||
|
],
|
||
|
"array-bracket-spacing": "error",
|
||
|
"space-in-parens": "error",
|
||
|
"space-before-blocks": "error",
|
||
|
"comma-dangle": "error",
|
||
|
"eol-last": "error",
|
||
|
"new-cap": [
|
||
|
"error",
|
||
|
{
|
||
|
"capIsNew": false,
|
||
|
"properties": false
|
||
|
}
|
||
|
],
|
||
|
"dot-notation": "error",
|
||
|
"indent": ["error", 4]
|
||
|
},
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*Spec.js"],
|
||
|
"rules": {
|
||
|
"no-unused-vars": [
|
||
|
"warn",
|
||
|
{
|
||
|
"vars": "all",
|
||
|
"args": "none",
|
||
|
"varsIgnorePattern": "controller",
|
||
|
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|