mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
16 lines
363 B
JSON
16 lines
363 B
JSON
{
|
|
"root": true,
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"next/core-web-vitals"
|
|
],
|
|
"rules": {
|
|
"unused-imports/no-unused-imports": "warn",
|
|
"simple-import-sort/imports": "warn",
|
|
"simple-import-sort/exports": "warn",
|
|
"eqeqeq": "warn"
|
|
},
|
|
"plugins": ["simple-import-sort", "unused-imports"]
|
|
}
|