mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 22:37:32 +00:00
* Add ESLint config * Add ESLint packages * Add prettier config * Fix ESLint package version * Format all files * Format static assets * Format project root config * Add pre-commit code formatting Formats .css & .js files automatically. If any .ts or .mts files are staged, the entire project is type-checked. Packages: - lint-staged - husky - prettier
9 lines
189 B
Plaintext
Executable File
9 lines
189 B
Plaintext
Executable File
{
|
|
"singleQuote": false,
|
|
"semi": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "all",
|
|
"overrides": [{ "files": "*.ts", "options": { "requirePragma": true } }],
|
|
"arrowParens": "avoid"
|
|
}
|