quartzcron
Version:
version: `0.1.0` [CHANGELOG](https://github.com/fedeghe/quartzcron/blob/master/CHANGELOG.md)
12 lines • 400 B
JavaScript
module.exports = [{
name:'xxx',
files: ["**/*.js" ],
rules: {
// ...eslint.configs.recommended.rules,
"max-len": ["error", { "code": 160 }],
"no-unused-vars": ["error", { "vars": "local", "args": "all" }],
"semi": ["error"],
"func-names": ["error", "never"]
},
ignores: [ "dist/*", "dist/**/*", "coverage/", "tests/*", "jest.config.js"]
}];