-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix git credential sharing Fix dubious directory ownership fix submodules and poetry proj fix safe dirs in git update deps and poetry install by default
- Loading branch information
Showing
12 changed files
with
3,569 additions
and
10 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
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
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,3 +1,4 @@ | ||
#!zsh | ||
|
||
git config --global submodule.recurse true | ||
cd /workspaces/DevContainer | ||
poetry install |
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,4 +1,8 @@ | ||
#!zsh | ||
|
||
# https://www.kenmuse.com/blog/avoiding-dubious-ownership-in-dev-containers/ | ||
# https://github.com/microsoft/vscode-remote-release/issues/7923 | ||
git config --global --add safe.directory . | ||
|
||
git fetch | ||
git status -sb -uno | ||
git status -sb -uno |
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
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 |
---|---|---|
@@ -0,0 +1,111 @@ | ||
{ | ||
"rewrap.reformat": true, | ||
"rewrap.autoWrap.enabled": true, | ||
"editor.detectIndentation": false, | ||
"editor.wrappingIndent": "indent", | ||
"editor.rulers": [ | ||
80 | ||
], | ||
"editor.formatOnSave": true, | ||
"editor.renderWhitespace": "all", | ||
"python.testing.pytestEnabled": true, | ||
"autoDocstring.docstringFormat": "numpy", | ||
"python.languageServer": "Pylance", | ||
"python.analysis.indexing": true, | ||
"python.analysis.completeFunctionParens": true, | ||
"cSpell.userWords": [ | ||
"aeropress", | ||
"ASTM", | ||
"astype", | ||
"baudrate", | ||
"Colour", | ||
"colourspace", | ||
"COLOURSPACES", | ||
"fluorilon", | ||
"greyscale", | ||
"gridspec", | ||
"icvfx", | ||
"lambertian", | ||
"loggable", | ||
"matplotlib", | ||
"Munsell", | ||
"ndarray", | ||
"portafilter", | ||
"protobuf", | ||
"scipy", | ||
"seperately", | ||
"sklearn", | ||
"specio", | ||
"Spectroradiometers", | ||
"tristimulus", | ||
"whitepoint" | ||
], | ||
"[python]": { | ||
"editor.formatOnType": true, | ||
"editor.defaultFormatter": "ms-python.black-formatter" | ||
}, | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.analysis.logLevel": "Warning", | ||
"python.analysis.autoFormatStrings": true, | ||
"python.analysis.packageIndexDepths": [ | ||
{ | ||
"name": "colour", | ||
"depth": 3, | ||
"includeAllSymbols": false | ||
}, | ||
{ | ||
"name": "colour_datasets", | ||
"depth": 3, | ||
"includeAllSymbols": false | ||
}, | ||
{ | ||
"name": "numpy", | ||
"depth": 3 | ||
}, | ||
{ | ||
"name": "sklearn", | ||
"depth": 3 | ||
}, | ||
{ | ||
"name": "matplotlib", | ||
"depth": 40, | ||
"includeAllSymbols": true | ||
}, | ||
{ | ||
"name": "scipy", | ||
"depth": 3 | ||
}, | ||
{ | ||
"name": "django", | ||
"depth": 2 | ||
}, | ||
{ | ||
"name": "flask", | ||
"depth": 2 | ||
} | ||
], | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
"**/.coverage": true, | ||
"**/.coveragerc": true, | ||
"**/.DS_Store": true, | ||
"**/.git": false, | ||
"**/.hg": true, | ||
"**/.idea": true, | ||
"**/.ipynb_checkpoints": true, | ||
"**/.mypy_cache": true, | ||
"**/.pytest_cache": true, | ||
"**/.ruff_cache": true, | ||
"**/.svn": true, | ||
"**/CVS": true, | ||
"**/Thumbs.db": true | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "explicit", | ||
"source.organizeImports": "explicit" | ||
}, | ||
"isort.importStrategy": "fromEnvironment", | ||
"[toml]": { | ||
"editor.defaultFormatter": "tamasfe.even-better-toml" | ||
}, | ||
} |
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 +0,0 @@ | ||
# DevContainer | ||
Submodule colour-science
updated
from 000000 to dc2bb0
Oops, something went wrong.