mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-22 16:43:35 +00:00
- Replace .eslintrc.js with .eslintrc.cjs for better ES module compatibility - Add .prettierrc configuration for consistent code formatting - Update package.json with new lint and format scripts - Add nodemon.json for development hot reloading configuration - Standardize code formatting across all JavaScript and Vue files - Update web admin SPA with improved linting rules and formatting - Add prettier configuration to web admin SPA 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
379 B
Plaintext
18 lines
379 B
Plaintext
{
|
|
"printWidth": 100,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"endOfLine": "auto",
|
|
"plugins": ["prettier-plugin-tailwindcss"],
|
|
"tailwindConfig": "./tailwind.config.js",
|
|
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"quoteProps": "as-needed",
|
|
"bracketSameLine": false,
|
|
"proseWrap": "preserve"
|
|
}
|