Skip to content

Commit

Permalink
Merge pull request #6 from elamandeep/editor-setup
Browse files Browse the repository at this point in the history
chore:editor setup added
  • Loading branch information
elamandeep authored Aug 6, 2023
2 parents 0490aee + 5574b45 commit 9e5ae54
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
app/taskwise/database.db
app/taskwise/__pycache__
build
dist
taskwise.egg-info

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
18 changes: 18 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.isort",
"ms-python.vscode-pylance",
"ms-python.python",
"yy0931.vscode-sqlite3-editor"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [

]
}
1 change: 1 addition & 0 deletions app/taskwise/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def clear_terminal():
"""
Clears the terminal
"""
print("\x1b[2J\x1b[H")


def menu():
Expand Down

0 comments on commit 9e5ae54

Please sign in to comment.