@iflow/eslint-config
Version:
ESLint Configuration
14 lines (13 loc) • 369 B
JavaScript
module.exports = {
rules: {
"for-direction": "off",
"no-async-promise-executor": "off",
"no-extra-boolean-cast": "off",
"no-cond-assign": "off",
"no-extra-parens": "off",
"no-inner-declarations": "off",
"no-await-in-loop": "warn",
"no-extra-semi": "warn",
"no-unsafe-finally": "warn"
}
};