-
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.
Merge pull request #124 from RoseauTechnologies/develop
Version 0.5.0
- Loading branch information
Showing
611 changed files
with
394,056 additions
and
173,903 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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,45 +1,43 @@ | ||
{ | ||
// Version of the setting file. Always 0.2 | ||
"version": "0.2", | ||
// language - current active spelling language | ||
"language": "en", | ||
// words - list of words to be always considered correct | ||
"words": [ | ||
"abcn", | ||
"absolufy", | ||
"asarray", | ||
"astype", | ||
"bysource", | ||
"cython", | ||
"dropna", | ||
"dtype", | ||
"furo", | ||
"htmlcov", | ||
"isort", | ||
"mathjax", | ||
"mathrm", | ||
"nbsphinx", | ||
"ndarray", | ||
"nplin", | ||
"phasor", | ||
"pipx", | ||
"pmatrix", | ||
"pmax", | ||
"pyproj", | ||
"pyproject", | ||
"pytest", | ||
"pyupgrade", | ||
"raphson", | ||
"rtol", | ||
"susceptance", | ||
"transfo", | ||
"ureg", | ||
"yesqa" | ||
], | ||
// flagWords - list of words to be always considered incorrect | ||
// This is useful for offensive words and common spelling errors. | ||
// For example "hte" should be "the" | ||
"flagWords": [ | ||
"hte" | ||
] | ||
// Version of the setting file. Always 0.2 | ||
"version": "0.2", | ||
// language - current active spelling language | ||
"language": "en", | ||
// words - list of words to be always considered correct | ||
"words": [ | ||
"abcn", | ||
"absolufy", | ||
"asarray", | ||
"astype", | ||
"bysource", | ||
"cython", | ||
"dropna", | ||
"dtype", | ||
"furo", | ||
"htmlcov", | ||
"isort", | ||
"mathjax", | ||
"mathrm", | ||
"nbsphinx", | ||
"ndarray", | ||
"nplin", | ||
"phasor", | ||
"pipx", | ||
"pmatrix", | ||
"pmax", | ||
"pyproj", | ||
"pyproject", | ||
"pytest", | ||
"pyupgrade", | ||
"raphson", | ||
"rtol", | ||
"susceptance", | ||
"transfo", | ||
"ureg", | ||
"yesqa" | ||
], | ||
// flagWords - list of words to be always considered incorrect | ||
// This is useful for offensive words and common spelling errors. | ||
// For example "hte" should be "the" | ||
"flagWords": ["hte"] | ||
} |
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,12 +1,12 @@ | ||
{ | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"ms-python.black-formatter", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-python.flake8", // We use ruff | ||
"ms-python.isort", // We use ruff | ||
] | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"ms-python.black-formatter", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance" | ||
], | ||
"unwantedRecommendations": [ | ||
"ms-python.flake8", // We use ruff | ||
"ms-python.isort" // We use 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,22 +1,26 @@ | ||
{ | ||
// Jupyter | ||
"jupyter.notebookFileRoot": "${workspaceFolder}", | ||
// Jupyter Notebook | ||
"jupyter.notebookFileRoot": "${workspaceFolder}", | ||
"notebook.formatOnSave.enabled": true, | ||
"notebook.codeActionsOnSave": { | ||
"source.organizeImports.ruff": true | ||
}, | ||
|
||
// Python | ||
"python.analysis.diagnosticSeverityOverrides": { | ||
"reportInvalidStringEscapeSequence": "warning", | ||
"reportImportCycles": "warning", | ||
"reportUnusedImport": "warning", | ||
}, | ||
"python.formatting.provider": "none", | ||
"python.testing.pytestArgs": [], | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports.ruff": true, | ||
}, | ||
}, | ||
// Python | ||
"python.analysis.diagnosticSeverityOverrides": { | ||
"reportInvalidStringEscapeSequence": "warning", | ||
"reportImportCycles": "warning", | ||
"reportUnusedImport": "warning" | ||
}, | ||
"python.formatting.provider": "none", | ||
"python.testing.pytestArgs": [], | ||
"python.testing.unittestEnabled": false, | ||
"python.testing.pytestEnabled": true, | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports.ruff": true | ||
} | ||
} | ||
} |
Oops, something went wrong.