mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-01 18:11:20 +08:00
- Install ESLint 9 with TypeScript and React support - Install Prettier with custom configuration (no semicolons) - Add husky and lint-staged for pre-commit hooks - Configure lint-staged to auto-fix and format on commit - Relax ESLint rules to avoid large-scale code changes - Format all existing code with Prettier (no semicolons) Co-Authored-By: tinkle-community <tinklefund@gmail.com>
14 lines
256 B
JSON
14 lines
256 B
JSON
{
|
|
"semi": false,
|
|
"trailingComma": "es5",
|
|
"singleQuote": true,
|
|
"printWidth": 80,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"endOfLine": "lf",
|
|
"arrowParens": "always",
|
|
"bracketSpacing": true,
|
|
"jsxSingleQuote": false,
|
|
"quoteProps": "as-needed"
|
|
}
|