!216 fix: eclint配置修改,解决换行错误

Merge pull request !216 from a20070322/issues/I94SPA
This commit is contained in:
蒋小小 2024-03-04 06:40:19 +00:00 committed by Gitee
commit 3945b3eeff
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 4 additions and 2 deletions

View File

@ -28,6 +28,8 @@
// 使 var let const
"no-var": "error",
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
"vue/multi-word-component-names": "off"
"vue/multi-word-component-names": "off",
//
"endOfLine": 0
}
}

View File

@ -1,7 +1,7 @@
{
"semi": false,
"singleQuote": true,
"endOfLine": "lf",
"endOfLine": "auto",
"proseWrap": "never",
"printWidth": 120,
"trailingComma": "none"