Skip to content

Commit

Permalink
fix: resolve issues with commitlint attempt #1
Browse files Browse the repository at this point in the history
  • Loading branch information
vicwomg committed Sep 2, 2024
1 parent 78ec425 commit 4c375e6
Show file tree
Hide file tree
Showing 4 changed files with 293 additions and 94 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.swp
.venv/
.venv*
/.vscode/
__pycache__/
dist/
songs/
Expand Down
15 changes: 15 additions & 0 deletions code_quality/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Suggested vscode settings

{
"pylint.args": ["--rcfile=${workspaceFolder}/code_quality/.pylintrc"],
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"[yaml]": {
"editor.formatOnSave": false
},
"isort.args": ["--profile", "black"]
}
Loading

0 comments on commit 4c375e6

Please sign in to comment.