UNPKG

imicros-feel-interpreter

Version:
45 lines 990 B
module.exports = { "root": true, "env": { "node": true, "commonjs": true, "es6": true, "jquery": false, "jest": true, "jasmine": true }, "extends": "eslint:recommended", "parserOptions": { "sourceType": "module", "ecmaVersion": 2018 }, "rules": { "indent": [ "warn", 4, { "SwitchCase": 1 } ], "quotes": [ "warn", "double" ], "semi": [ "error", "always" ], "no-var": [ "error" ], "no-console": [ "off" ], "no-unused-vars": [ "warn", { "varsIgnorePattern": "[iI]gnored" } ], "no-mixed-spaces-and-tabs": [ "warn" ], "newline-per-chained-call": ["error", { "ignoreChainWithDepth": 2 }] } };