Skip to content

Commit

Permalink
Merge pull request #3 from a5chin/feature/extensions
Browse files Browse the repository at this point in the history
Update VS Code Extensions
  • Loading branch information
a5chin authored Apr 9, 2024
2 parents 3335ee4 + 77425df commit 03eb334
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
1 change: 1 addition & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"exiasr.hadolint",
"kevinrose.vsc-python-indent",
"mosapride.zenkaku",
"ms-azuretools.vscode-docker",
"ms-python.python",
"njpwerner.autodocstring",
"oderwat.indent-rainbow",
Expand Down
19 changes: 19 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"recommendations": [
"charliermarsh.ruff",
"codezombiech.gitignore",
"eamodio.gitlens",
"exiasr.hadolint",
"kevinrose.vsc-python-indent",
"mosapride.zenkaku",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-vscode-remote.remote-containers",
"njpwerner.autodocstring",
"oderwat.indent-rainbow",
"pkief.material-icon-theme",
"shardulm94.trailing-spaces",
"usernamehw.errorlens",
"yzhang.markdown-all-in-one",
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
},
"editor.formatOnSave": true,
},
"files.insertFinalNewline": true
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
}
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ The following are the features.
- [eamodio.gitlens](https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens)
- [kevinrose.vsc-python-indent](https://marketplace.visualstudio.com/items?itemName=kevinrose.vsc-python-indent)
- [mosapride.zenkaku](https://marketplace.visualstudio.com/items?itemName=mosapride.zenkaku)
- [ms-azuretools.vscode-docker](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker)
- [ms-python.python](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- [njpwerner.autodocstring](https://marketplace.visualstudio.com/items?itemName=njpwerner.autodocstring)
- [oderwat.indent-rainbow](https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow)
Expand Down Expand Up @@ -76,11 +77,14 @@ ignore = [
The `.pre-commit-config.yaml` file can contain scripts to be executed before commit.

```sh
# Linter
# Python Formatter
ruff format .

# Python Linter
ruff check . --fix

# Formatter
ruff format .
# Docker Linter
hodolint Dockerfile
```

### Install
Expand Down

0 comments on commit 03eb334

Please sign in to comment.