Skip to content

Commit

Permalink
chore: Add VSCode settings configuration file (#127)
Browse files Browse the repository at this point in the history
- Created `.vscode/settings.json` file for project-specific VSCode
settings
- Configured editor settings to maintain consistent coding style
  • Loading branch information
chyroc authored Dec 7, 2024
1 parent e8b1906 commit f81395b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"files.exclude": {
// Git
"**/.git": true,
"**/.svn": true,
// Python
"**/.venv": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.mypy_cache": true,
"**/*.pyc": true,
"**/.coverage": true,
"**/.eggs": true,
"**/*.egg-info": true,
"**/.ruff_cache": true,
// Project
"**/build": true,
"**/dist": true,
// Editor
"**/.idea": true,
// System
"**/.DS_Store": true
}
}

0 comments on commit f81395b

Please sign in to comment.