"eslint:recommended"
],
"globals": {
- "bowser": "readonly",
+ "Cookies": "readonly",
"I18n": "readonly",
"L": "readonly",
"OSM": "writable",
"Piwik": "readonly",
- "querystring": "readonly",
- "require": "readonly",
+ "Qs": "readonly",
"updateLinks": "readonly"
},
"rules": {
"comma-style": "error",
"computed-property-spacing": "error",
"curly": ["error", "multi-line", "consistent"],
+ "dot-location": ["error", "property"],
"dot-notation": "error",
"eol-last": "error",
"eqeqeq": ["error", "smart"],
"func-call-spacing": "error",
+ "indent": ["error", 2, {
+ "SwitchCase": 1,
+ "VariableDeclarator": "first",
+ "FunctionDeclaration": { "parameters": "first" },
+ "FunctionExpression": { "parameters": "first" },
+ "CallExpression": { "arguments": "first" }
+ }],
"key-spacing": "error",
"keyword-spacing": "error",
"no-alert": "warn",
"no-array-constructor": "error",
"no-caller": "error",
+ "no-console": "warn",
"no-div-regex": "error",
+ "no-eq-null": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-implicit-coercion": "warn",
"no-implicit-globals": "warn",
"no-implied-eval": "error",
+ "no-invalid-this": "error",
"no-iterator": "error",
"no-labels": "error",
"no-label-var": "error",
"no-loop-func": "error",
"no-mixed-operators": "error",
"no-multiple-empty-lines": "error",
+ "no-multi-spaces": "error",
"no-multi-str": "error",
"no-negated-condition": "error",
"no-nested-ternary": "error",
"no-new-object": "error",
"no-new-wrappers": "error",
"no-octal-escape": "error",
+ "no-param-reassign": "error",
"no-process-env": "error",
"no-proto": "error",
"no-script-url": "error",
"no-self-compare": "error",
"no-sequences": "error",
- "no-shadow-restricted-names": "error",
"no-throw-literal": "error",
"no-trailing-spaces": "error",
+ "no-undef-init": "error",
+ "no-undefined": "error",
"no-unmodified-loop-condition": "error",
"no-unneeded-ternary": "error",
"no-unused-expressions": "off",
"no-void": "error",
"no-warning-comments": "warn",
"no-whitespace-before-property": "error",
- "no-with": "error",
"object-curly-newline": ["error", { "consistent": true }],
"object-curly-spacing": ["error", "always"],
"object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }],