feat: 使用prettierrc对代码进行格式化

This commit is contained in:
piexlMax(奇淼
2024-11-09 10:32:26 +08:00
parent 87a4ce17e1
commit 7d9af64f6d
139 changed files with 12685 additions and 12664 deletions

View File

@@ -1,27 +1,23 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
important: true,
theme: {
extend: {
backgroundColor: {
"main": "#F5F5F5",
main: '#F5F5F5'
},
textColor: {
"active": "var(--el-color-primary)",
active: 'var(--el-color-primary)'
},
boxShadowColor: {
"active": "var(--el-color-primary)",
active: 'var(--el-color-primary)'
},
borderColor: {
"table-border": "var(--el-border-color-lighter)",
'table-border': 'var(--el-border-color-lighter)'
}
},
}
},
darkMode: "class",
darkMode: 'class',
plugins: []
}