Update default packages for ruby, golang, and node

This commit is contained in:
2018-12-20 01:47:24 +00:00
parent 26d8f1a96d
commit 3516274d40
3 changed files with 9 additions and 6 deletions

View File

@@ -12,16 +12,16 @@ alias gv="govendor"
install_go_global_packages () { install_go_global_packages () {
local packages=( local packages=(
github.com/akavel/up github.com/akavel/up
github.com/alecthomas/gometalinter
github.com/asciimoo/wuzz github.com/asciimoo/wuzz
github.com/derekparker/delve/cmd/dlv github.com/derekparker/delve/cmd/dlv
github.com/golang/lint/golint github.com/golang/lint/golint
github.com/kisielk/errcheck github.com/kisielk/errcheck
github.com/kr/pretty github.com/kr/pretty
github.com/mdempsky/gocode
github.com/mdempsky/unconvert github.com/mdempsky/unconvert
github.com/nsf/gocode
github.com/rakyll/hey github.com/rakyll/hey
github.com/rogpeppe/godef github.com/rogpeppe/godef
github.com/sourcegraph/go-langserver
github.com/spf13/cobra/cobra github.com/spf13/cobra/cobra
github.com/vektra/mockery/.../ github.com/vektra/mockery/.../
golang.org/x/tools/cmd/godoc golang.org/x/tools/cmd/godoc
@@ -34,6 +34,4 @@ install_go_global_packages () {
echo "installing/updating \"$package\"" echo "installing/updating \"$package\""
go get -u "$package" go get -u "$package"
done done
gometalinter --install
} }

View File

@@ -12,12 +12,15 @@ alias tl="tldr"
install_node_global_packages () { install_node_global_packages () {
npm install -g \ npm install -g \
appcenter-cli \
bash-language-server \
eslint \ eslint \
eslint-config-prettier \ eslint-config-prettier \
eslint-plugin-prettier \ eslint-plugin-prettier \
eslint_d \ eslint_d \
htmllint-cli \ htmllint-cli \
httpsnippet \ httpsnippet \
javascript-typescript-langserver \
jsonlint \ jsonlint \
localtunnel \ localtunnel \
markdown-it \ markdown-it \
@@ -27,7 +30,8 @@ install_node_global_packages () {
tslint \ tslint \
typescript \ typescript \
typescript-formatter \ typescript-formatter \
uuid-cli uuid-cli \
vscode-css-languageserver-bin
} }
# Load nvm if it's available # Load nvm if it's available

View File

@@ -14,7 +14,8 @@ install_ruby_global_packages () {
rbenv-rehash \ rbenv-rehash \
reek \ reek \
rubocop \ rubocop \
seeing_is_believing seeing_is_believing \
solargraph
} }
# Aliases # Aliases