chore: 引入eslint-plugin-format依赖,移除不再使用的Prettier配置文件

This commit is contained in:
LittleTurtle2333
2025-06-23 11:39:29 +08:00
parent 585dc2e02f
commit 9494f8fda6
5 changed files with 105 additions and 45 deletions

View File

@@ -7,6 +7,15 @@ export default uniHelper({
ignores: [
'src/uni_modules/',
'dist',
// unplugin-auto-import 生成的类型文件,每次提交都改变,所以加入这里吧,与 .gitignore 配合使用
'auto-import.d.ts',
// vite-plugin-uni-pages 生成的类型文件,每次切换分支都一堆不同的,所以直接 .gitignore
'uni-pages.d.ts',
// 插件生成的文件
'src/pages.json',
'src/manifest.json',
// 忽略自动生成文件
'src/service/app/**',
],
rules: {
'no-console': 'off',
@@ -19,4 +28,16 @@ export default uniHelper({
'ts/no-empty-object-type': 'off',
'no-extend-native': 'off',
},
formatters: {
/**
* Format CSS, LESS, SCSS files, also the `<style>` blocks in Vue
* By default uses Prettier
*/
css: true,
/**
* Format HTML files
* By default uses Prettier
*/
html: true,
},
})