Files
cunkebao_v3/nkebao/.eslintrc.js
笔记本里的永平 6a4e99885d feat: 本次提交更新内容如下
新项目模板初始化
2025-07-17 21:56:53 +08:00

21 lines
560 B
JavaScript

module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
'react-app',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
parser: '@typescript-eslint/parser',
plugins: ['react', '@typescript-eslint', 'prettier'],
rules: {
'prettier/prettier': 'warn',
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
},
};