From 7e141b6e54ed976257224d903ed5db04c1edd1fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=9A=E5=90=8D=E7=A8=8B=E5=BA=8F=E5=91=98?= <1968115437@qq.com> Date: Wed, 15 Mar 2023 09:07:13 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=8D=A2=E8=A1=8C=E6=94=B9=E4=B8=BACR?= =?UTF-8?q?LF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.cjs | 4 +++- .vscode/.prettierignore => .prettierignore | 3 ++- .prettierrc.cjs | 17 +++++++++++++++++ .vscode/settings.json | 5 +++-- tsconfig.json | 2 +- 5 files changed, 26 insertions(+), 5 deletions(-) rename .vscode/.prettierignore => .prettierignore (85%) create mode 100644 .prettierrc.cjs diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 8821985..a84367b 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -27,7 +27,7 @@ module.exports = { indent: ['error', 4, { SwitchCase: 1 }], //代码缩进2个空格 semi: ['error', 'always'], //行尾需要有分号 quotes: ['error', 'single'], //强制使用一致的反勾号、双引号或单引号 - 'linebreak-style': ['error', 'unix'], //强制使用一致的换行风格,"unix":\n 表示 LF , "windows":\r\n 表示 CRLF + 'linebreak-style': ['error', 'windows'], //强制使用一致的换行风格,"unix":\n 表示 LF , "windows":\r\n 表示 CRLF eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': [ @@ -43,6 +43,8 @@ module.exports = { 'vue/singleline-html-element-content-newline': 'off', //要求在单行元素的内容之前和之后有一个换行符 'vue/max-attributes-per-line': 'off', //执行每行的最大属性数(被 prettier 最大单行控制了暂off) 'vue/multi-word-component-names': 'off', //要求组件名称始终为多字 + 'vue/html-self-closing': 'off', //执行自我封闭式 + 'no-undef': 'off', //禁用未声明的变量,除非它们在 /*global */ 注释中被提到 '@typescript-eslint/ban-ts-comment': 'off', // 不允许@ts-<指令>评论或要求指令后的描述 '@typescript-eslint/ban-types': 'off', // 不允许某些类型 '@typescript-eslint/no-non-null-assertion': 'off', // 不允许使用!后缀操作符的非空断言 diff --git a/.vscode/.prettierignore b/.prettierignore similarity index 85% rename from .vscode/.prettierignore rename to .prettierignore index 4686357..98c4b0f 100644 --- a/.vscode/.prettierignore +++ b/.prettierignore @@ -12,4 +12,5 @@ **/*.min.css **/*.tsbuildinfo /src/manifest.json -.eslintcache \ No newline at end of file +.eslintcache +pnpm-lock.yaml \ No newline at end of file diff --git a/.prettierrc.cjs b/.prettierrc.cjs new file mode 100644 index 0000000..9dc4181 --- /dev/null +++ b/.prettierrc.cjs @@ -0,0 +1,17 @@ +////////////////////////////////////////////////////////////////// +// 官网参考:https://prettier.io/docs/en/options.html#tab-width // +//////////////////////////////////////////////////////////////// +module.exports = { + /**.pellerrc 的架构 */ + $schema: 'https://json.schemastore.org/prettierrc', + /**在所有代码语句的末尾添加分号 */ + semi: true, + /**使用 4 个空格缩进 */ + tabWidth: 4, + /**每行最多 160 字符 */ + printWidth: 160, + /**指定文件的结尾换行符 */ + endOfLine: 'auto', + /**使用单引号代替双引号 */ + singleQuote: true, +}; diff --git a/.vscode/settings.json b/.vscode/settings.json index 611d1f5..f08f0ba 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,7 +13,7 @@ "source.fixAll.eslint": true, "source.fixAll.stylelint": true }, - "files.eol": "\n", + "files.eol": "auto", "eslint.enable": true, ////////////////////////////////////////////////////////////////// @@ -23,6 +23,7 @@ "prettier.semi": true, "prettier.tabWidth": 4, "prettier.printWidth": 160, + "prettier.endOfLine": "auto", "prettier.singleQuote": true, - "prettier.ignorePath": "./.vscode/prettierignore" + "prettier.ignorePath": ".prettierignore" } diff --git a/tsconfig.json b/tsconfig.json index 22206c3..bdd5425 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,7 @@ "removeComments": true, // 删除注释 "paths": { "@/*": ["./src/*"] }, //指定一组条目,它们将导入重新映射到其他查找位置 "pretty": true, // 在输出中启用颜色和格式,使编译器错误更容易阅读 - "newLine": "lf", // 设置发出文件的换行符 + "newLine": "crlf", // 设置发出文件的换行符 // "sourceMap": true, //为发出的JavaScript文件创建源映射文件。 // "declaration": true, // 从项目中的TypeScript和JavaScript文件生成.d.ts文件 // "declarationMap": true, // 为d.ts文件创建源地图