Feat(npm): Removed prettier from global install

prettier was being detected by nvim and run with default configuration
in projects that it shouldn't have run in. Because of that the package
should be installed only project by project basis.
This commit is contained in:
2023-05-15 19:25:13 +03:00
parent cf1ccd6f39
commit f3dff521f7
2 changed files with 1 additions and 4 deletions

View File

@@ -3,7 +3,6 @@ corepack
editorconfig-checker
github-release-notes
neovim
prettier
stylelint-lsp
tldr

View File

@@ -4,7 +4,7 @@
# shellcheck source=shared.sh
source "$HOME/.dotfiles/scripts/shared.sh"
! have npm && msg_err "npm could not be found." && exit 0;
! have npm && msg_err "npm could not be found." && exit 0
packages=(
# This is a tool to check if your files consider your .editorconfig rules.
@@ -13,7 +13,6 @@ packages=(
# a tag and uses issues or commits to creating the release notes.
"github-release-notes"
"neovim"
"prettier"
"corepack"
# CLI and local web plain text notetaking, bookmarking, and archiving
# with linking, tagging, filtering, search, Git versioning & syncing,
@@ -40,4 +39,3 @@ done
msg_run "Upgrading all global packages"
npm -g --no-progress --no-timing --no-fund outdated
npm -g --no-timing --no-fund upgrade