mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import eslint from '@eslint/js';
|
|
import tsEslintPlugin from '@typescript-eslint/eslint-plugin';
|
|
import tsEslintParser from '@typescript-eslint/parser';
|
|
import globals from "globals";
|
|
|
|
const customTsFlatConfig = [
|
|
{
|
|
name: 'typescript-eslint/base',
|
|
languageOptions: {
|
|
parser: tsEslintParser,
|
|
sourceType: 'module',
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node,
|
|
NodeJS: 'readonly', // 添加 NodeJS 全局变量
|
|
},
|
|
},
|
|
files: ['**/*.{ts,tsx}'],
|
|
rules: {
|
|
...tsEslintPlugin.configs.recommended.rules,
|
|
'quotes': ['error', 'single'], // 使用单引号
|
|
'semi': ['error', 'always'], // 强制使用分号
|
|
'indent': ['error', 4], // 使用 4 空格缩进
|
|
},
|
|
plugins: {
|
|
'@typescript-eslint': tsEslintPlugin,
|
|
},
|
|
ignores: ['src/webui/**'], // 忽略 src/webui/ 目录所有文件
|
|
},
|
|
];
|
|
|
|
export default [eslint.configs.recommended, ...customTsFlatConfig]; |