forked from kandji-inc/kst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
31 lines (23 loc) · 706 Bytes
/
Brewfile
File metadata and controls
31 lines (23 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This brewfile ensures will install the required VSCode plugins. This requires
# brew to be installed locally. To install, execute the following command from
# the root of the project.
#
# ```
# brew bundle --no-lock
# ```
# Support for editorconfig
vscode "editorconfig.editorconfig"
# Python linting, formatting, and debugging
vscode "ms-python.python"
vscode "ms-python.debugpy"
vscode "charliermarsh.ruff"
# TOML linting and formatting
vscode "tamasfe.even-better-toml"
# YAML linting and formatting
vscode "redhat.vscode-yaml"
# Shell linting
vscode "timonwong.shellcheck"
# Markdown linting
vscode "yzhang.markdown-all-in-one"
# Spell checking
vscode "streetsidesoftware.code-spell-checker"