-
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.
- Loading branch information
Showing
15 changed files
with
198 additions
and
39 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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
{ | ||
// Version of the setting file. Always 0.2 | ||
"version": "0.2", | ||
// language - current active spelling language | ||
"language": "en,fr", | ||
// words - list of words to be always considered correct | ||
"words": [ | ||
"abcn", | ||
"absolufy", | ||
"acsr", | ||
"aldrey", | ||
"asarray", | ||
"astype", | ||
"bline", | ||
"bnline", | ||
"bnpline", | ||
"bysource", | ||
"cohl", | ||
"cosgini", | ||
"cterm", | ||
"curmg", | ||
"cython", | ||
"direc", | ||
"dline", | ||
"dropna", | ||
"dtype", | ||
"elmlodmv", | ||
"elmpvsys", | ||
"furo", | ||
"gpslat", | ||
"gpslon", | ||
"gscale", | ||
"htmlcov", | ||
"ilini", | ||
"imiso", | ||
"inom", | ||
"isort", | ||
"mathjax", | ||
"mathrm", | ||
"mlei", | ||
"nbsphinx", | ||
"ndarray", | ||
"nlnph", | ||
"nneutral", | ||
"noloadloss", | ||
"normhkva", | ||
"nphase", | ||
"nphases", | ||
"nplin", | ||
"opendss", | ||
"pcutr", | ||
"pgini", | ||
"phasor", | ||
"phasors", | ||
"phtech", | ||
"pipx", | ||
"plini", | ||
"pmatrix", | ||
"pmax", | ||
"pyproj", | ||
"pyproject", | ||
"pytest", | ||
"pyupgrade", | ||
"qgini", | ||
"qlini", | ||
"qurs", | ||
"raphson", | ||
"rline", | ||
"rnline", | ||
"rnpline", | ||
"rtol", | ||
"sgini", | ||
"slini", | ||
"strn", | ||
"susceptance", | ||
"transfo", | ||
"uknom", | ||
"uktr", | ||
"ureg", | ||
"utrn", | ||
"xline", | ||
"xlpe", | ||
"xnet", | ||
"xnline", | ||
"xnpline", | ||
"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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"charliermarsh.ruff", | ||
"esbenp.prettier-vscode", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
], | ||
} |
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,33 @@ | ||
{ | ||
// Jupyter Notebook | ||
"jupyter.notebookFileRoot": "${workspaceFolder}", | ||
"notebook.formatOnSave.enabled": true, | ||
"notebook.codeActionsOnSave": { | ||
"source.organizeImports.ruff": "explicit", | ||
}, | ||
|
||
// Python | ||
"python.analysis.diagnosticSeverityOverrides": { | ||
"reportInvalidStringEscapeSequence": "warning", | ||
"reportImportCycles": "warning", | ||
"reportUnusedImport": "warning", | ||
}, | ||
"python.testing.pytestEnabled": true, | ||
"[python]": { | ||
"editor.defaultFormatter": "charliermarsh.ruff", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports.ruff": "explicit", | ||
}, | ||
}, | ||
// Prettier | ||
"prettier.printWidth": 120, | ||
"[markdown][yaml][html][css]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true, | ||
}, | ||
// Json | ||
"[json]": { | ||
"editor.indentSize": 2, | ||
}, | ||
} |
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,44 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"options": { "cwd": "${workspaceFolder}" }, | ||
"presentation": { | ||
"showReuseMessage": true, | ||
"clear": true, | ||
}, | ||
"tasks": [ | ||
{ | ||
"label": "Build docs", | ||
"detail": "Build the docs using Sphinx.", | ||
"type": "shell", | ||
"command": "make -C doc html", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true, | ||
}, | ||
"problemMatcher": [], | ||
"presentation": { | ||
"reveal": "silent", | ||
"focus": true, | ||
}, | ||
}, | ||
{ | ||
"label": "Open docs", | ||
"detail": "Open the docs in the browser.", | ||
"type": "shell", | ||
"command": "open build/html/index.html", | ||
"presentation": { | ||
"reveal": "never", | ||
"close": true, | ||
"focus": false, | ||
"panel": "dedicated", | ||
}, | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true, | ||
}, | ||
"isBackground": 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
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
File renamed without changes.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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