{ "env": { "node": true, "es6": true }, "rules": { "indent": [2, "tab", {"SwitchCase": 1}], "curly": 2, "no-use-before-define": 2, "no-unused-vars": [2, {"args": "all"}], "no-underscore-dangle": 0, "no-trailing-spaces": [2, {"skipBlankLines": true}], "no-multi-spaces": [2, { exceptions: { "Property": true, "VariableDeclarator": true, "ImportDeclaration": true } }], "key-spacing": [2, { "singleLine": { "beforeColon": false, "afterColon": true }, "multiLine": { "beforeColon": false, "afterColon": true } }], "no-shadow": 0, "keyword-spacing": [2, {"after": true}], "space-before-blocks": [2, "always"], "no-mixed-spaces-and-tabs": [2, "smart-tabs"], "require-jsdoc": [2, { "require": { "FunctionDeclaration": true, "MethodDefinition": true, "ClassDeclaration": true } }], dot-location: [2, "property"] } }