0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/.eslintrc.cjs
Yusuke Wada 0fafd7aa8b
chore(eslint): enable @typescript-eslint/unbound-method (#2622)
* chore(eslint): enable `@typescript-eslint/unbound-method`

* denoify
2024-05-06 17:38:34 +09:00

10 lines
214 B
JavaScript

module.exports = {
extends: ['@hono/eslint-config'],
rules: {
'@typescript-eslint/unbound-method': 'error',
},
parserOptions: {
project: ['./tsconfig.json', './runtime_tests/tsconfig.json'],
},
}