https://github.com/bugzilla/vs-code-bugzilla
extension for vs code for working on bugzilla
https://github.com/bugzilla/vs-code-bugzilla
Last synced: 9 months ago
JSON representation
extension for vs code for working on bugzilla
- Host: GitHub
- URL: https://github.com/bugzilla/vs-code-bugzilla
- Owner: bugzilla
- Created: 2017-09-25T21:16:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-27T20:03:12.000Z (almost 7 years ago)
- Last Synced: 2025-06-10T00:50:34.611Z (9 months ago)
- Size: 5.86 KB
- Stars: 3
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# README
This is a bundle I use to work on bugzilla.
It includes support for additional syntaxes required by bugzilla:
* template toolkit
* apache config
* docker config
* YAML
* extended auto-closing-tags
It also adds support for code formatting (perltidy) and linting (perlcritic).
In the future it might include better syntax highlighting for perl as VSCode's is a little lacking for new features.
## Required Setup
The commands "perlcritic" and "perltidy" need to be in the path.
Additionally, perlcritic requires Perl::Critic::Freenode.
Typically you'd install these with the cpanm command.
### OSX
Using homebrew:
```bash
brew install perl
brew install cpanminus
cpanm Perl::Critic::Freenode Perl::Critic Perl::Tidy
```
### Windows
Install [Stawberry Perl](http://strawberryperl.com/) first, then from the terminal:
```powershell
cpanm Perl::Critic::Freenode Perl::Critic Perl::Tidy
```
### Linux (Ubuntu)
TODO