monkeeShark/packages/frontend/.eslintrc-tsnocheck.cjs

11 lines
249 B
JavaScript
Raw Normal View History

2023-07-31 01:56:33 +00:00
// Split from .eslintrc, so that the default eslintrc can still show error for ts-nocheck
module.exports = {
root: true,
extends: [
'./.eslintrc.cjs',
],
rules: {
'@typescript-eslint/ban-ts-comment': ['error', { 'ts-nocheck': false }]
}
};