fix: no undef var error

This commit is contained in:
jialin
2025-03-19 11:23:29 +08:00
parent 4b5f08ccc2
commit 3a05d74a36
3 changed files with 7 additions and 0 deletions
+4
View File
@@ -3,8 +3,12 @@ module.exports = {
rules: {
'react/no-unstable-nested-components': 1,
'no-unused-vars': 'off',
'no-undef': 'error',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/class-name-casing': 'off'
},
globals: {
Global: 'readonly'
},
ignorePatterns: ['public/static/']
};