Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
style: 格式化代码文件并修复样式问题 docs: 新增部署文档和系统要求文档 test: 更新测试截图和覆盖率报告 refactor: 重构SchedulerPanel加载状态逻辑 ci: 添加lint和format脚本到package.json build: 更新依赖项并添加开发工具 chore: 添加验证报告和上线审查计划
16 lines
377 B
JavaScript
16 lines
377 B
JavaScript
/** @type {import('prettier').Config} */
|
|
export default {
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
printWidth: 100,
|
|
bracketSpacing: true,
|
|
jsxSingleQuote: false,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
tailwindConfig: './tailwind.config.js',
|
|
tailwindFunctions: ['clsx', 'cn', 'cva'],
|
|
};
|