{ "root": true, "parserOptions": { "sourceType": "module", "ecmaVersion": 2018 }, "plugins": [ "smarter-tabs" ], "env": { "es6": true, "node": true, "browser": true }, "extends": "eslint:recommended", "ignorePatterns": ["test-app/**/*.js"], "rules": { "brace-style": ["warn", "1tbs", { "allowSingleLine": true }], "no-mixed-spaces-and-tabs": ["warn", "smart-tabs"], "smarter-tabs/smarter-tabs": "warn" }, "overrides": [{ "files": ["test/*.test.js", "tests/unit/*.spec.js"], "env": { "mocha": true } }] }