Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to the "nf-core-extensionpack" extension pack will be docume

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## 0.8.0

- Add `codezombiech.gitignore`
- Remove `oderwat.indent-rainbow`
- Remove `streetsidesoftware.code-spell-checker`

## 0.7.0

- Add `jebbs.markdown-extended`
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,21 @@ Note - not all of these may be to your taste! We have tried to include packages
## Included extensions

- [Apptainer/Singularity](https://marketplace.visualstudio.com/items?itemName=onnovalkering.vscode-singularity) - _Provides syntax highlighting for Apptainer/Singularity definition files_
- [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) - _A basic spell checker that works well with camelCase code._
- [Docker](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker) - _Makes it easy to create, manage, and debug containerized applications_
- [EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) - _Support for [EditorConfig](https://editorconfig.org/) project files for code standardisation._
- [indent-rainbow](https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow) - _Highlight indentation level, especially if inconsistent_
- [gitignore](codezombiech.gitignore) - _Language support for .gitignore files_
- [Markdown Extended](https://marketplace.visualstudio.com/items?itemName=jebbs.markdown-extended) - _Gives nice markdown previews, including admonitions - see [nf-core/website#2579](https://github.com/nf-core/website/pull/2579)_
- [Nextflow](https://marketplace.visualstudio.com/items?itemName=nextflow.nextflow) - _Nextflow language support_
- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) - _Code formatter using prettier_
- [Rainbow CSV](https://marketplace.visualstudio.com/items?itemName=mechatroner.rainbow-csv) - _Highlight columns in csv files in different colors_
- [Ruff](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) - _An extremely fast Python linter and code formatter, written in Rust._
- [Todo Tree](https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree) - _Show TODO, FIXME, etc. comment tags in a tree view_
- [YAML](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) - _YAML Language Support by Red Hat, with built-in Kubernetes syntax support_
- [Markdown Extended](https://marketplace.visualstudio.com/items?itemName=jebbs.markdown-extended) - _Gives nice markdown previews, including admonitions - see [nf-core/website#2579](https://github.com/nf-core/website/pull/2579)_

Some extensions which are not included, but that many in the community find useful are:

- [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) - _A basic spell checker that works well with camelCase code._
- [indent-rainbow](https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow) - _Highlight indentation level, especially if inconsistent_

Please create a GitHub issue if you can think of any others to recommend!

Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/nf-core/vscode-extensionpack/issues"
},
"homepage": "https://nf-co.re",
"version": "0.7.0",
"version": "0.8.0",
"icon": "logo.png",
"keywords": [
"bioinformatics",
Expand All @@ -30,16 +30,15 @@
],
"extensionPack": [
"charliermarsh.ruff",
"codezombiech.gitignore",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"Gruntfuggly.todo-tree",
"jebbs.markdown-extended",
"mechatroner.rainbow-csv",
"ms-azuretools.vscode-docker",
"nextflow.nextflow",
"oderwat.indent-rainbow",
"onnovalkering.vscode-singularity",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"jebbs.markdown-extended"
"redhat.vscode-yaml"
]
}