mirror of
https://github.com/trycua/computer.git
synced 2026-01-05 12:59:58 -06:00
- Add `.editorconfig` for editor consistency. - Configure GitHub Actions workflow for linting (`.github/workflows/lint.yml`). - Add pre-commit hooks for automated checks (`.pre-commit-config.yaml`). - Configure Prettier and exclusions (`.prettierrc.yaml`, `.prettierignore`). - Update VS Code extensions to include formatting tools (`.vscode/extensions.json`). - Adjust VS Code settings for auto-formatting (`.vscode/settings.json`).
13 lines
207 B
INI
13 lines
207 B
INI
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = false
|
|
trim_trailing_whitespace = true
|
|
|
|
[*.{js,ts,jsx,tsx,json,css,scss,html,md}]
|
|
indent_size = 2
|