mirror of
https://github.com/Gmaker689/ai-diff-preview.git
synced 2026-09-27 03:21:52 +08:00
23 lines
497 B
JSON
23 lines
497 B
JSON
|
|
{
|
||
|
|
"root": true,
|
||
|
|
"parser": "@typescript-eslint/parser",
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 2022,
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"plugins": ["@typescript-eslint"],
|
||
|
|
"extends": [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended"
|
||
|
|
],
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
||
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
||
|
|
"@typescript-eslint/no-explicit-any": "warn"
|
||
|
|
},
|
||
|
|
"env": {
|
||
|
|
"node": true,
|
||
|
|
"es2022": true
|
||
|
|
}
|
||
|
|
}
|