chore: pass lint & format code

This commit is contained in:
Apple Sun 2023-05-12 16:35:42 +08:00
parent 3a41d8fd02
commit be50cd53f9
8 changed files with 35 additions and 27 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "vue3-vant4-mobile", "name": "vue3-vant4-mobile",
"private": true, "private": true,
"version": "0.0.1", "version": "0.0.2",
"author": { "author": {
"name": "xiangshu233", "name": "xiangshu233",
"email": "xiangshu233@outlook.com", "email": "xiangshu233@outlook.com",
@ -19,8 +19,9 @@
"preview": "vite preview", "preview": "vite preview",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite", "clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:lib": "rimraf node_modules", "clean:lib": "rimraf node_modules",
"lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,vue}\"",
"lint:lint-staged": "lint-staged", "lint:lint-staged": "lint-staged",
"lint:eslint": "eslint \"{src}/**/*.{vue,ts,tsx}\" --fix", "lint:eslint": "eslint \"./src/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", "lint:stylelint": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"prepare": "husky install" "prepare": "husky install"
@ -103,9 +104,9 @@
"pnpm": ">=7" "pnpm": ">=7"
}, },
"lint-staged": { "lint-staged": {
"*.{js,jsx,ts,tsx}": [ "*.{js,jsx,ts,tsx,vue}": [
"eslint --fix", "npm run lint",
"prettier --write" "git add"
], ],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [ "{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json" "prettier --write--parser json"

View File

@ -8,7 +8,6 @@ module.exports = {
quoteProps: 'as-needed', quoteProps: 'as-needed',
bracketSpacing: true, bracketSpacing: true,
trailingComma: 'es5', trailingComma: 'es5',
jsxBracketSameLine: false,
jsxSingleQuote: false, jsxSingleQuote: false,
arrowParens: 'always', arrowParens: 'always',
insertPragma: false, insertPragma: false,

View File

@ -11,7 +11,6 @@ html {
} }
[data-theme='dark'] { [data-theme='dark'] {
&, &,
* { * {
color-scheme: dark !important; color-scheme: dark !important;
@ -24,7 +23,6 @@ html {
} }
[data-theme='light'] { [data-theme='light'] {
&, &,
* { * {
color-scheme: light !important; color-scheme: light !important;

View File

@ -24,6 +24,7 @@
:deep(.van-field__left-icon) { :deep(.van-field__left-icon) {
display: flex; display: flex;
} }
:deep(.van-field__right-icon) { :deep(.van-field__right-icon) {
display: flex; display: flex;
} }

View File

@ -52,12 +52,23 @@
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
@keyframes move-forever {
0% {
transform: translate3d(-90px, 0, 0);
}
100% {
transform: translate3d(85px, 0, 0);
}
}
.wave-wrapper { .wave-wrapper {
position: fixed; position: fixed;
width: 100%; width: 100%;
left: 0; left: 0;
bottom: 0; bottom: 0;
} }
.ignore-waves { .ignore-waves {
position: relative; position: relative;
display: block; display: block;
@ -92,14 +103,4 @@
animation-delay: -5s; animation-delay: -5s;
animation-duration: 16s; animation-duration: 16s;
} }
@keyframes move-forever {
0% {
transform: translate3d(-90px, 0, 0);
}
100% {
transform: translate3d(85px, 0, 0);
}
}
</style> </style>

View File

@ -167,9 +167,11 @@
width: 140px; width: 140px;
height: 140px; height: 140px;
} }
.cover { .cover {
width: 170px; width: 170px;
height: 100px; height: 100px;
:deep(.van-image__img) { :deep(.van-image__img) {
border-radius: 10px !important; border-radius: 10px !important;
} }

View File

@ -100,6 +100,7 @@
.my-bg { .my-bg {
clip-path: inset(0 -55% 0 -55% round 0 0 100% 100%); clip-path: inset(0 -55% 0 -55% round 0 0 100% 100%);
background-size: cover; background-size: cover;
&::after { &::after {
content: ''; content: '';
position: absolute; position: absolute;
@ -111,12 +112,15 @@
opacity: 0.9; opacity: 0.9;
} }
} }
.van-cell { .van-cell {
align-items: center; align-items: center;
background: transparent; background: transparent;
&:active { &:active {
background-color: var(--van-cell-active-color); background-color: var(--van-cell-active-color);
} }
.xicon { .xicon {
margin-right: 10px; margin-right: 10px;
} }

View File

@ -48,16 +48,16 @@
import { useGlobSetting } from '@/hooks/setting'; import { useGlobSetting } from '@/hooks/setting';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { updateDarkSign } from '@/theme'; // import { updateDarkSign } from '@/theme';
const getDarkMode = computed({ // const getDarkMode = computed({
get: () => designStore.getDarkMode === 'dark', // get: () => designStore.getDarkMode === 'dark',
set: (value) => { // set: (value) => {
const darkMode = value ? 'dark' : 'light'; // const darkMode = value ? 'dark' : 'light';
updateDarkSign(darkMode); // updateDarkSign(darkMode);
designStore.setDarkMode(darkMode); // designStore.setDarkMode(darkMode);
}, // },
}); // });
const designStore = useDesignSettingStore(); const designStore = useDesignSettingStore();
const globSetting = useGlobSetting(); const globSetting = useGlobSetting();
@ -92,11 +92,13 @@
min-height: 50vh; min-height: 50vh;
max-width: 45vh; max-width: 45vh;
min-width: 30vh; min-width: 30vh;
.wel-top { .wel-top {
display: flex; display: flex;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
} }
.wel-bottom { .wel-bottom {
display: flex; display: flex;
align-items: center; align-items: center;