{ "parserOptions": { "ecmaVersion": 5 }, "env": { "browser": true, "amd": true, "qunit": true }, "globals": { "requirejs": "readonly" }, "plugins": ["html"], "extends": "eslint:recommended", "rules": { "array-bracket-newline": ["error", { "multiline": true }], "array-bracket-spacing": "error", "block-spacing": "error", "brace-style": ["error", "stroustrup", { "allowSingleLine": true }], "camelcase": "error", "comma-dangle": "error", "comma-spacing": "error", "comma-style": "error", "computed-property-spacing": "error", "eol-last": "error", "func-call-spacing": "error", "func-name-matching": "error", "func-style": ["error", "declaration"], "indent": ["error", "tab"], "key-spacing": "error", "keyword-spacing": "error", "line-comment-position": "error", "linebreak-style": "error", "lines-around-comment": "error", "max-len": ["error", { "code": 90, "tabWidth": 4 }], "max-lines": ["error", 200], "multiline-comment-style": ["error", "separate-lines"], "multiline-ternary": ["error", "never"], "new-cap": "error", "new-parens": "error", "no-continue": "error", "no-inline-comments": "error", "no-lonely-if": "error", "no-mixed-operators": "error", "no-multi-assign": "error", "no-multiple-empty-lines": ["error", { "max": 1, "maxBOF": 0, "maxEOF": 0 }], "no-negated-condition": "error", "no-nested-ternary": "error", "no-trailing-spaces": "error", "no-unneeded-ternary": "error", "no-unused-vars": ["error", { "vars": "local" }], "no-whitespace-before-property": "error", "object-curly-spacing": ["error", "always"], "object-property-newline": ["error", { "allowAllPropertiesOnSameLine": true }], "one-var": ["error", "never"], "operator-linebreak": ["error", "after"], "quote-props": ["error", "as-needed"], "quotes": "error", "semi": "error", "semi-spacing": "error", "semi-style": "error", "space-before-blocks": "error", "space-before-function-paren": ["error", "never"], "space-in-parens": "error", "space-infix-ops": "error", "space-unary-ops": ["error", { "words": false }], "spaced-comment": "error" } }