UNPKG

291 BJavaScriptView Raw
1import rootESLint from '../../eslint.config.mjs';
2
3export default [
4 ...rootESLint,
5 {
6 rules: {
7 '@typescript-eslint/no-unused-vars': 'warn',
8 '@typescript-eslint/no-var-requires': 'warn',
9 'no-extra-boolean-cast': 'warn',
10 },
11 },
12];