mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 11:29:33 +08:00
39 lines
911 B
JSON
39 lines
911 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"overrides": [],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"ignorePatterns": ["node_modules", "dist"],
|
|
"plugins": ["react", "@typescript-eslint", "react-hooks", "prettier"],
|
|
"rules": {
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/no-unescaped-entities": 0,
|
|
"react/prop-types": 0,
|
|
"camelcase": "error",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-unused-vars": "error",
|
|
"no-duplicate-imports": "error",
|
|
"linebreak-style": ["warn", "unix"]
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
},
|
|
"import/resolver": {
|
|
"typescript": {}
|
|
}
|
|
}
|
|
}
|