mirror of
https://github.com/trycua/computer.git
synced 2026-05-07 23:51:55 -05:00
258ae86988
- 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`).
30 lines
230 B
Plaintext
30 lines
230 B
Plaintext
# Node / JS
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
out/
|
|
*.min.js
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
*.tmp
|
|
|
|
# VSCode / editor files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Other generated files
|
|
*.lock
|
|
*.db
|
|
*.sqlite
|