diff --git a/.eslintrc.js b/.eslintrc.js index 29c0d30..8219d26 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,4 +1,4 @@ -module.exports = { +module.exports = { //https://eslint.org/docs/latest/ root: true, // 环境变量 https://eslint.org/docs/latest/user-guide/configuring/language-options#specifying-environments env: { @@ -27,10 +27,8 @@ module.exports = { '@vue/typescript/recommended' ], rules: { - 'no-var': 'error', - // 禁止出现console - 'no-console': 'warn', - // 关闭debugger警告 - "no-debugger": "off", + 'no-var': 'error', // 禁止使用var + 'no-console': 'warn', // 禁止出现console + "no-debugger": "off", // 关闭debugger警告 } }; \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..46c69cf --- /dev/null +++ b/.prettierignore @@ -0,0 +1,40 @@ +.DS_Store +node_modules +node_modules/**/* +node_modules/**/*.* +/dist + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + + +# 重要的环境依赖文件 +package.json +package.lock.json + +# 代码格式化插件的配置文件 +.prettierrc +.prettierignore + +# git忽略文件 +.gitignore + +# 不对markdown进行格式化, 容易打乱自己编排的样式 +*.md \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..fc2fbe0 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,27 @@ +module.exports = { // https://prettier.io/docs/en/options.html + arrowParens: 'avoid', + // bracketSameLine: false, + // bracketSpacing: true, + // embeddedLanguageFormatting: 'auto', + // htmlWhitespaceSensitivity: 'css', + // insertPragma: false, + // jsxSingleQuote: false, + printWidth: 120, + // proseWrap: 'preserve', + // quoteProps: 'as-needed', + // requirePragma: false, + // semi: true, + singleQuote: true, + tabWidth: 2, + trailingComma: 'none', + // useTabs: false, + // vueIndentScriptAndStyle: false, + overrides: [ + { + files: '*.html', + options: { + parser: 'html', + }, + }, + ], +}; diff --git a/package.json b/package.json index 694773e..9b1e579 100644 --- a/package.json +++ b/package.json @@ -18,10 +18,12 @@ "@vue/eslint-config-prettier": "^7.0.0", "@vue/eslint-config-typescript": "^11.0.0", "eslint": "^8.21.0", + "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import": "^2.26.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-vue": "^9.3.0", + "prettier": "^2.7.1", "typescript": "^4.6.4", "vite": "^3.0.0", "vue-tsc": "^0.38.4" diff --git a/tsconfig.json b/tsconfig.json index d4aefa2..e3cc5c2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,5 +14,4 @@ "skipLibCheck": true }, "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], - "references": [{ "path": "./tsconfig.node.json" }] } diff --git a/tsconfig.node.json b/tsconfig.node.json deleted file mode 100644 index 9d31e2a..0000000 --- a/tsconfig.node.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "module": "ESNext", - "moduleResolution": "Node", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -}