css警告修复,eslint严格模式开启

This commit is contained in:
chuan_wuhao 2022-12-26 17:53:42 +08:00
parent 956f3c4880
commit 14772851cb
8 changed files with 24 additions and 17 deletions

View File

@ -12,7 +12,8 @@
- 主题切换 - 主题切换
- 错误页 - 错误页
- 封装了一些小组件 - 动态切换主题、贴花的 `EChart`
- 带有拓展功能的表格
- 还有一些不值一提的小东西... - 还有一些不值一提的小东西...
## 预览地址 ## 预览地址

View File

@ -18,7 +18,7 @@
"dayjs": "^1.11.7", "dayjs": "^1.11.7",
"echarts": "^5.4.0", "echarts": "^5.4.0",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"naive-ui": "^2.34.0", "naive-ui": "^2.34.3",
"pinia": "^2.0.17", "pinia": "^2.0.17",
"pinia-plugin-persistedstate": "^2.4.0", "pinia-plugin-persistedstate": "^2.4.0",
"print-js": "^1.6.0", "print-js": "^1.6.0",

View File

@ -19,9 +19,8 @@ $activedColor: #2080f0;
.ray-table__setting-option--draggable { .ray-table__setting-option--draggable {
display: grid; display: grid;
grid-row-gap: 10px; grid-row-gap: 10px;
justify-items: center; justify-self: center;
align-items: center; align-self: center;
justify-content: center;
& .draggable-item { & .draggable-item {
display: flex; display: flex;

View File

@ -24,7 +24,7 @@ import type { App } from 'vue'
* *
* @remak , `main.ts` , `i18n` * @remak , `main.ts` , `i18n`
*/ */
export const useDefaultLocal = () => { export const getDefaultLocal = () => {
const locale: string = const locale: string =
getCache('localeLanguage', 'localStorage') !== 'no' getCache('localeLanguage', 'localStorage') !== 'no'
? getCache('localeLanguage', 'localStorage') ? getCache('localeLanguage', 'localStorage')
@ -34,7 +34,7 @@ export const useDefaultLocal = () => {
} }
export const setupI18n = (app: App<Element>) => { export const setupI18n = (app: App<Element>) => {
const locale = useDefaultLocal() const locale = getDefaultLocal()
const i18n = createI18n({ const i18n = createI18n({
locale, locale,
@ -63,7 +63,7 @@ export const useLanguageOptions = () => [
* *
* @remark . , (https://www.naiveui.com/zh-CN/dark/docs/i18n) * @remark . , (https://www.naiveui.com/zh-CN/dark/docs/i18n)
*/ */
export const useNaiveLocal = (key: string) => { export const getNaiveLocal = (key: string) => {
switch (key) { switch (key) {
case 'zh-CN': case 'zh-CN':
return { return {
@ -91,10 +91,10 @@ export const useNaiveLocal = (key: string) => {
* *
* @remark * @remark
*/ */
export const useDefaultNaiveLocal = () => { export const getDefaultNaiveLocal = () => {
const local = useDefaultLocal() const local = getDefaultLocal()
return useNaiveLocal(local) return getNaiveLocal(local)
} }
/** /**

View File

@ -1,4 +1,4 @@
import { useNaiveLocal, useDefaultNaiveLocal } from '@/language/index' import { getNaiveLocal, getDefaultNaiveLocal } from '@/language/index'
export const useSetting = defineStore( export const useSetting = defineStore(
'setting', 'setting',
@ -13,14 +13,14 @@ export const useSetting = defineStore(
themeValue: false, // `true` 为黑夜主题, `false` 为白色主题 themeValue: false, // `true` 为黑夜主题, `false` 为白色主题
reloadRouteSwitch: true, // 刷新路由开关 reloadRouteSwitch: true, // 刷新路由开关
menuTagSwitch: true, // 多标签页开关 menuTagSwitch: true, // 多标签页开关
naiveLocal: useDefaultNaiveLocal(), // `naive ui` 语言包 naiveLocal: getDefaultNaiveLocal(), // `naive ui` 语言包
}) })
const { locale } = useI18n() const { locale } = useI18n()
const updateLocale = (key: string) => { const updateLocale = (key: string) => {
// TODO: 修改语言 // TODO: 修改语言
locale.value = key locale.value = key
settingState.naiveLocal = useNaiveLocal(key) settingState.naiveLocal = getNaiveLocal(key)
} }
const changePrimaryColor = (value: string) => { const changePrimaryColor = (value: string) => {

View File

@ -13,7 +13,9 @@ import type {
import type { ECharts } from 'echarts/core' import type { ECharts } from 'echarts/core'
export global { export global {
const __APP_INFO__: { declare type Recordable<T = unknown> = Record<string, T>
declare const __APP_INFO__: {
pkg: { pkg: {
name: string name: string
version: string version: string

View File

@ -25,7 +25,7 @@
"@use-micro/*": ["src/micro/*"] "@use-micro/*": ["src/micro/*"]
}, },
"suppressImplicitAnyIndexErrors": true, "suppressImplicitAnyIndexErrors": true,
"types": ["@intlify/unplugin-vue-i18n/messages"] "types": ["@intlify/unplugin-vue-i18n/messages", "naive-ui/volar"]
}, },
"include": [ "include": [
"src/**/*.ts", "src/**/*.ts",

View File

@ -63,7 +63,12 @@ export default defineConfig(async ({ mode }) => {
defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg` defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg`
}), }),
useSVGIcon(), useSVGIcon(),
viteEslintPlugin, viteEslintPlugin({
failOnWarning: true, // 如果含有警告则构建失败
failOnError: true, // 如果有错误则构建失败
cache: true, // 缓存, 减少构建时间
exclude: ['**/node_modules/**', 'vite-env.d.ts'],
}),
vitePluginImp({ vitePluginImp({
libList: [ libList: [
{ {