-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ddb5b0
commit 6c9fa1a
Showing
3 changed files
with
17 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-python.python", | ||
"bungcip.better-toml" | ||
"bungcip.better-toml", | ||
"charliermarsh.ruff" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,28 @@ | ||
{ | ||
"[python]": { | ||
"editor.defaultFormatter": "charliermarsh.ruff" | ||
}, | ||
"files.exclude": { | ||
"*.pytest_cache": true, | ||
"*egg-info": true | ||
}, | ||
"python.testing.pytestArgs": [ | ||
"tests" | ||
], | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.unittestEnabled": false, | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#ffffff18", | ||
// Colors based on GOES-R Logo: | ||
// https://www.goes-r.gov/multimedia/logos.html | ||
"activityBar.activeBorder": "#F8AF22", | ||
"activityBar.foreground": "#F8AF22", | ||
"activityBar.background": "#323334", | ||
"activityBar.foreground": "#F8AF22", | ||
"activityBar.inactiveForeground": "#259DD7", | ||
"activityBar.activeBackground": "#ffffff18", | ||
"activityBarBadge.background": "#F8AF22", | ||
"statusBar.background": "#259DD7", | ||
"statusBarItem.remoteBackground": "#F8AF22", | ||
"statusBarItem.remoteForeground": "#323334", | ||
"titleBar.activeBackground": "#259DD7" | ||
}, | ||
"python.formatting.provider": "black", | ||
"actionButtons": { | ||
"reloadButton": null, | ||
"commands": [ | ||
{ | ||
"name": "🌐Remake Docs", | ||
"singleInstance": true, | ||
"command": "conda activate basic38; cd docs; ./remake_docs.sh" | ||
}, | ||
{ | ||
"name": "🚀JupyterLab", | ||
"color": "#f0ead2", | ||
"command": "conda activate goes2go && jupyter lab --no-browser --port=7793" | ||
}, | ||
{ | ||
"name": "🥇Update", | ||
"color": "#f0ead2", | ||
"command": "conda env update -f environment.yml --prune" | ||
} | ||
] | ||
}, | ||
"python.testing.pytestArgs": [ | ||
"tests" | ||
], | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"esbonio.server.enabled": true, | ||
"files.exclude": { | ||
"*.pytest_cache": true, | ||
"*egg-info": true, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters