ng-elasticsearch-sanitize
Version:
Elastic Search Sring Sanitizer for Angular
61 lines (60 loc) • 1.31 kB
Plain Text
{
"plugins": ["nodeca"],
"rules": {
"camelcase": 0,
"consistent-return": 0,
"curly": 2,
"dot-notation": 2,
"eqeqeq": 2,
"global-strict": [2, "never"],
"guard-for-in": 2,
"new-cap": 2,
"no-bitwise": 2,
"no-caller": 2,
"no-cond-assign": 2,
"no-debugger": 2,
"no-empty": 2,
"no-eq-null": 2,
"no-eval": 2,
"no-iterator": 2,
"no-loop-func": 2,
"no-mixed-spaces-and-tabs": 2,
"no-mixed-requires": 0,
"no-multi-str": 0,
"no-new": 2,
"no-path-concat": 2,
"no-proto": 2,
"no-script-url": 2,
"no-shadow": 0,
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unused-vars": 2,
"no-unused-expressions": 2,
"no-underscore-dangle": 0,
"nodeca/indent": [2, "spaces", 2],
"quotes": [2, "single", "avoid-escape"],
"semi": 2,
"space-after-keywords": [2, "always", {
"checkFunctionKeyword": true
}],
"strict": 2,
"wrap-iife": 2
},
"env": {
"node": true
},
"globals": {
"$": false,
"_": false,
"atob": false,
"angular": false,
"document": false,
"Holder": false,
"moment": false,
"navigator": false,
"Raven": false,
"sweetAlert": false, // use service instead of global then remove it.
"URL": false,
"window": false
}
}