项目文件夹

文件
wehub-resource-sync 3cd11ababe
Check Markdown links / linkChecker (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:38:56 +08:00

18 行
430 B
JavaScript

import tseslint from 'typescript-eslint';
export default tseslint.config({
ignores: ['.wrangler/**', 'node_modules/**', 'build/**'],
plugins: {
'@typescript-eslint': tseslint.plugin,
},
languageOptions: {
parser: tseslint.parser,
},
files: ['**/*.ts'],
rules: {
// '@typescript-eslint/no-unused-vars': 'error',
'no-duplicate-imports': 'error',
'@typescript-eslint/no-namespace': 'off',
},
});