-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devcontainer style improvements (#358)
* Disable line buffering * fail pylint checks on unused-import errors * make sure pycodestyle checks for indentation * increase code quality requirements * add some new extensions * bring pycodestyle checks inline with flake8 * add a prettier rc that instructs it to use our editorconfig --------- Co-authored-by: Sergiy Matusevych <sergiym@microsoft.com>
- Loading branch information
Showing
15 changed files
with
91 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"editorconfig": true, | ||
"trailingComma": "es5" | ||
} |
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,30 +1,33 @@ | ||
{ | ||
"recommendations": [ | ||
"EditorConfig.EditorConfig", | ||
"streetsidesoftware.code-spell-checker", | ||
"ms-python.vscode-pylance", | ||
"ms-python.python", | ||
"ms-python.pylint", | ||
"matangover.mypy", | ||
"davidanson.vscode-markdownlint", | ||
"donjayamanne.githistory", | ||
"donjayamanne.python-environment-manager", | ||
"njpwerner.autodocstring", | ||
"eamodio.gitlens", | ||
"editorconfig.editorconfig", | ||
"esbenp.prettier-vscode", | ||
"github.copilot", | ||
"github.vscode-github-actions", | ||
"github.vscode-pull-request-github", | ||
"gruntfuggly.todo-tree", | ||
"hashicorp.terraform", | ||
"huntertran.auto-markdown-toc", | ||
"ibm.output-colorizer", | ||
"lextudio.restructuredtext", | ||
"trond-snekvik.simple-rst", | ||
"DavidAnson.vscode-markdownlint", // Linter for markdown files | ||
"huntertran.auto-markdown-toc", // Auto-generated Markdown Table of Contents | ||
"github.vscode-github-actions", // GitHub Actions integration | ||
"matangover.mypy", | ||
"ms-azuretools.vscode-docker", | ||
"waderyan.gitblame", // Enhances git blame experience | ||
"donjayamanne.githistory", // Enhanced git history experience | ||
"eamodio.gitlens", | ||
"ms-vsliveshare.vsliveshare", // Allows easy code share | ||
"Gruntfuggly.todo-tree", // Highlights TODO comments in code | ||
"github.copilot", // Copilot integration | ||
"IBM.output-colorizer", // Colorize your output/test logs | ||
"hashicorp.terraform", // Terraform syntax highlighting | ||
"redhat.vscode-yaml", // Kubernetes manifest syntax highlighting | ||
"stkb.rewrap", // "Alt + Q" -> rewrap comments after n characters on one line | ||
"tyriar.sort-lines", // "Ctrl + Shift + P -> Sort lines" -> sort lines alphabetically | ||
"esbenp.prettier-vscode" // A pretty good formatter for many languages | ||
"ms-python.autopep8", | ||
"ms-python.flake8", | ||
"ms-python.pylint", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-vsliveshare.vsliveshare", | ||
"njpwerner.autodocstring", | ||
"redhat.vscode-yaml", | ||
"stkb.rewrap", | ||
"streetsidesoftware.code-spell-checker", | ||
"trond-snekvik.simple-rst", | ||
"tyriar.sort-lines", | ||
"waderyan.gitblame" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ dependencies: | |
- pycodestyle | ||
- autopep8 | ||
- pydocstyle | ||
- flake8 | ||
- setuptools | ||
- setuptools-scm | ||
- jupyter | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ dependencies: | |
- pycodestyle | ||
- autopep8 | ||
- pydocstyle | ||
- flake8 | ||
- setuptools | ||
- setuptools-scm | ||
- jupyter | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ dependencies: | |
- pycodestyle | ||
- autopep8 | ||
- pydocstyle | ||
- flake8 | ||
- setuptools | ||
- setuptools-scm | ||
- jupyter | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ dependencies: | |
- pycodestyle | ||
- autopep8 | ||
- pydocstyle | ||
- flake8 | ||
- setuptools | ||
- setuptools-scm | ||
- jupyter | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ dependencies: | |
- pycodestyle | ||
- autopep8 | ||
- pydocstyle | ||
- flake8 | ||
- setuptools | ||
- setuptools-scm | ||
- jupyter | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ dependencies: | |
- pycodestyle | ||
- autopep8 | ||
- pydocstyle | ||
- flake8 | ||
- setuptools | ||
- setuptools-scm | ||
- jupyter | ||
|
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