diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index c99ac50b3..000000000 --- a/.prettierrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "singleQuote": true, - "proseWrap": "never" -} diff --git a/package.json b/package.json index a85a507a6..1f48a1525 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,6 @@ "eslint": "^8.31.0", "husky": "^8.0.1", "nano-staged": "^0.8.0", - "prettier": "^2.7.1" + "prettier": "^3.0.0" } } diff --git a/packages/create-vant-cli-app/src/generator.ts b/packages/create-vant-cli-app/src/generator.ts index d73885f53..d9e5d7f28 100644 --- a/packages/create-vant-cli-app/src/generator.ts +++ b/packages/create-vant-cli-app/src/generator.ts @@ -69,14 +69,14 @@ export class VanGenerator { // see https://github.com/mrmlnc/fast-glob#how-to-write-patterns-on-windows const templatePath = join(GENERATOR_DIR, this.inputs.vueVersion).replace( /\\/g, - '/' + '/', ); const templateFiles = glob.sync( join(templatePath, '**', '*').replace(/\\/g, '/'), { dot: true, - } + }, ); templateFiles.forEach((filePath) => { @@ -109,8 +109,8 @@ export class VanGenerator { consola.success(`Successfully created ${color.yellow(name)}.`); consola.success( `Run ${color.yellow( - `cd ${name} && git init && yarn && yarn dev` - )} to start development!` + `cd ${name} && git init && yarn && yarn dev`, + )} to start development!`, ); } } diff --git a/packages/vant-area-data/src/index.ts b/packages/vant-area-data/src/index.ts index 0c23b0b6f..5fb3c49a4 100644 --- a/packages/vant-area-data/src/index.ts +++ b/packages/vant-area-data/src/index.ts @@ -3900,7 +3900,7 @@ type CascaderOption = { const makeOption = ( text: string, value: string, - children?: CascaderOption[] + children?: CascaderOption[], ): CascaderOption => ({ text, value, diff --git a/packages/vant-cli/cjs/jest.transformer.cjs b/packages/vant-cli/cjs/jest.transformer.cjs index d03305cb6..3aaed7441 100644 --- a/packages/vant-cli/cjs/jest.transformer.cjs +++ b/packages/vant-cli/cjs/jest.transformer.cjs @@ -35,7 +35,7 @@ const transformSFC = (code, path) => { if (descriptor.script) { const content = descriptor.script.content.replace( 'export default', - 'const script =' + 'const script =', ); output.push(content); } else if (descriptor.scriptSetup) { @@ -88,7 +88,7 @@ module.exports = { code = transformJsx(code, path); } return { - code: transformScript(code) + code: transformScript(code), }; }, }; diff --git a/packages/vant-cli/cjs/postcss.config.cjs b/packages/vant-cli/cjs/postcss.config.cjs index 4e6f16b9d..6cb3ea6ca 100644 --- a/packages/vant-cli/cjs/postcss.config.cjs +++ b/packages/vant-cli/cjs/postcss.config.cjs @@ -14,14 +14,12 @@ function getPostcssPlugins(rootConfig) { const plugins = rootConfig.plugins || []; if (Array.isArray(plugins)) { - const hasAutoprefixerPlugin = plugins.find( - (plugin) => { - if (typeof plugin === 'object') { - return plugin.postcssPlugin === 'autoprefixer'; - } - return plugin === 'autoprefixer'; + const hasAutoprefixerPlugin = plugins.find((plugin) => { + if (typeof plugin === 'object') { + return plugin.postcssPlugin === 'autoprefixer'; } - ); + return plugin === 'autoprefixer'; + }); if (hasAutoprefixerPlugin) { return plugins; } diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index 0671c03ed..f416f4a55 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -81,7 +81,7 @@ "picocolors": "^1.0.0", "postcss": "^8.4.23", "postcss-load-config": "^4.0.1", - "prettier": "^2.7.1", + "prettier": "^3.0.0", "release-it": "^15.4.1", "terser": "^5.16.1", "transliteration": "^2.3.5", diff --git a/packages/vant-cli/site/common/iframe-sync.js b/packages/vant-cli/site/common/iframe-sync.js index f03dd6dce..5329ca8d2 100644 --- a/packages/vant-cli/site/common/iframe-sync.js +++ b/packages/vant-cli/site/common/iframe-sync.js @@ -40,7 +40,7 @@ export function syncPathToParent() { type: 'replacePath', value: getCurrentDir(), }, - '*' + '*', ); } @@ -53,7 +53,7 @@ export function syncPathToChild() { type: 'replacePath', value: getCurrentDir(), }, - '*' + '*', ); }); } @@ -68,7 +68,7 @@ export function syncThemeToChild(theme) { type: 'updateTheme', value: theme, }, - '*' + '*', ); }); } diff --git a/packages/vant-cli/site/common/style/base.less b/packages/vant-cli/site/common/style/base.less index 57e759d2a..4bf6304b4 100644 --- a/packages/vant-cli/site/common/style/base.less +++ b/packages/vant-cli/site/common/style/base.less @@ -6,9 +6,20 @@ body { overflow-x: auto; color: var(--van-doc-text-color-2); font-size: 16px; - font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', - Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', - 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif; + font-family: + 'Open Sans', + -apple-system, + BlinkMacSystemFont, + 'Helvetica Neue', + Helvetica, + Segoe UI, + Arial, + Roboto, + 'PingFang SC', + 'miui', + 'Hiragino Sans GB', + 'Microsoft Yahei', + sans-serif; background-color: var(--van-doc-background); -webkit-font-smoothing: antialiased; } diff --git a/packages/vant-cli/site/desktop/App.vue b/packages/vant-cli/site/desktop/App.vue index c0b58dfc0..5140cbc2a 100644 --- a/packages/vant-cli/site/desktop/App.vue +++ b/packages/vant-cli/site/desktop/App.vue @@ -107,11 +107,11 @@ export default { const navItems = this.config.nav.reduce( (result, nav) => [...result, ...nav.items], - [] + [], ); const current = navItems.find( - (item) => item.path === this.$route.meta.name + (item) => item.path === this.$route.meta.name, ); if (current && current.title) { diff --git a/packages/vant-cli/site/desktop/components/DemoPlayground.vue b/packages/vant-cli/site/desktop/components/DemoPlayground.vue index e7d81d9ab..1b9c6f7f8 100644 --- a/packages/vant-cli/site/desktop/components/DemoPlayground.vue +++ b/packages/vant-cli/site/desktop/components/DemoPlayground.vue @@ -108,7 +108,9 @@ export default { cursor: pointer; opacity: 0.6; outline: none; - transition: opacity 0.2s, background 0.2s; + transition: + opacity 0.2s, + background 0.2s; // expand click area &::after { diff --git a/packages/vant-cli/site/desktop/components/Header.vue b/packages/vant-cli/site/desktop/components/Header.vue index 4547b0eb2..3ae7406f7 100644 --- a/packages/vant-cli/site/desktop/components/Header.vue +++ b/packages/vant-cli/site/desktop/components/Header.vue @@ -142,7 +142,7 @@ export default { const action = val ? 'add' : 'remove'; document.body[`${action}EventListener`]( 'click', - this.checkHideVersionPop + this.checkHideVersionPop, ); this.showVersionPop = val; diff --git a/packages/vant-cli/site/index.html b/packages/vant-cli/site/index.html index 20244e936..592b62860 100644 --- a/packages/vant-cli/site/index.html +++ b/packages/vant-cli/site/index.html @@ -1,4 +1,4 @@ - + @@ -15,10 +15,7 @@ - <% if (headHtml) { %> - <%= headHtml %> - <% } %> - <% if (baiduAnalytics) { %> + <% if (headHtml) { %> <%= headHtml %> <% } %> <% if (baiduAnalytics) { %> - <% } %> - <% if (baiduAnalytics) { %> + <% } %> <% if (baiduAnalytics) { %>