-
-
Notifications
You must be signed in to change notification settings - Fork 331
Update PR workflow / workspace #1053
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
604bc32
1919158
e2feeb3
1ce169d
3bd8b69
36bc76c
f9cb181
9b09ae3
3226177
ddeb91f
c63219d
a2e2418
ca61e74
2062f06
9eb7226
8e1fb38
cb940f0
afa0b5f
4a14d5c
ba4845a
88818f9
926211e
9e9664c
9d71dc6
0be93c7
30b09eb
cdadb0d
3996ae6
ae55330
200ae13
f6b6cd2
131fe0a
aac0dc2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,14 @@ | ||
| <sub>By submitting this pull request you agree that all contributions to this project are made under the MIT license.</sub> | ||
|
|
||
| ## Issues | ||
| ## Summary | ||
|
|
||
| <!-- Link the issues this change resolves, or describe them --> | ||
| <!-- Describe these changes --> | ||
|
|
||
| ## Summary | ||
| ## Issues | ||
|
|
||
| <!-- Describe how these changes resolve the aforementioned issues --> | ||
| <!-- Link the issues this change resolves (if any) --> | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] Tests have been included for all bug fixes or added functionality. | ||
| - [ ] The `changelog.rst` has been updated with any significant changes. | ||
| - [ ] Tests have been included for all bug fixes or added functionality. | ||
| - [ ] The `changelog.rst` has been updated with any significant changes. | ||
|
|
||
| <sub>By submitting this pull request you agree that all contributions are made under this project's open source license(s).</sub> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,7 +35,7 @@ pip-wheel-metadata | |
|
|
||
| # --- IDE --- | ||
| .idea | ||
| .vscode | ||
| .vscode/*/ | ||
|
|
||
| # --- JS --- | ||
| node_modules | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "recommendations": [ | ||
| "wholroyd.jinja", | ||
| "esbenp.prettier-vscode", | ||
| "ms-python.vscode-pylance", | ||
| "ms-python.python", | ||
| "charliermarsh.ruff", | ||
| "dbaeumer.vscode-eslint", | ||
| "ms-python.black-formatter", | ||
| "ms-python.mypy-type-checker" | ||
| ] | ||
| } |
Archmonger marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| { | ||
| "editor.detectIndentation": false, | ||
|
||
| "editor.formatOnSave": true, | ||
| "python.linting.enabled": true, | ||
|
||
| "python.linting.mypyEnabled": true, | ||
Archmonger marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "python.analysis.typeCheckingMode": "off", | ||
|
||
| "python.languageServer": "Pylance", | ||
|
||
| "python.formatting.provider": "black", | ||
| "python.analysis.autoImportCompletions": true, | ||
| "git.autofetch": "all", | ||
| "prettier.tabWidth": 4, | ||
| "prettier.useTabs": true, | ||
| "prettier.endOfLine": "auto", | ||
| "prettier.proseWrap": "never", | ||
|
||
| "files.associations": { | ||
| "**/requirements/*.txt": "pip-requirements", | ||
Archmonger marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "**/templates/**.html": "jinja", | ||
| "**/template/**.html": "jinja", | ||
| }, | ||
| "[json, jsonc]": { | ||
Archmonger marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "editor.defaultFormatter": "vscode.json-language-features" | ||
| }, | ||
| "[javascript]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
| }, | ||
| "[css]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
| }, | ||
| "[python]": { | ||
| "editor.defaultFormatter": "ms-python.black-formatter", | ||
Archmonger marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "editor.codeActionsOnSave": { | ||
| "source.organizeImports": true | ||
| } | ||
| }, | ||
| "files.insertFinalNewline": true | ||
| } | ||
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.