mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 10:06:51 +08:00
12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
import { defineConfig } from 'vite-plus'
|
|
|
|
export default defineConfig({
|
|
staged: {
|
|
'*': 'eslint --fix --pass-on-unpruned-suppressions',
|
|
},
|
|
fmt: {
|
|
singleQuote: true,
|
|
semi: false,
|
|
},
|
|
})
|