module.exports = { "env": { "node": true }, "globals": { "console": true, "exports": true, "mocha": true, "it": true, "describe": true, "before": true, "beforeEach": true, "after": true, "afterEach": true, "sinon": true }, "rules": { "strict": 0, "quotes": [1, "single"], "no-native-reassign": 0, "camelcase": 0, "dot-notation": 0, "no-debugger": 1, "comma-dangle": [0, "always-multiline"], "no-underscore-dangle": 0, "no-unused-vars": [1, {"vars": "all", "args": "none"}], "no-trailing-spaces": 1, "key-spacing": 1, "no-unused-expressions": 1, "no-multi-spaces": 1, "no-use-before-define": 0, "space-infix-ops": 1, "no-console": 0, "comma-spacing": 1, "no-alert": 1, "no-empty": 1, "no-extra-bind": 1, "eol-last": 1, "eqeqeq": 1, "semi": 1, "no-multi-str": 0, "no-extra-semi": 1, "new-cap": 0, "consistent-return": 0, "no-extra-boolean-cast": 0, "no-mixed-spaces-and-tabs": 1, "no-shadow": 1, "no-sequences": 1, "handle-callback-err": 1 } }