diff options
author | Alan Pearce | 2020-08-17 13:02:37 +0200 |
---|---|---|
committer | Alan Pearce | 2020-08-24 10:03:16 +0200 |
commit | 455e717f354f5db05580d0b090f7daeaee55bd2c (patch) | |
tree | 143871f85c533c902ffbfb24d681c918b49df50f /user/settings | |
parent | 9a85ecdb0cb1055ddbdf79bdb88912ef75f651ab (diff) | |
download | nixfiles-455e717f354f5db05580d0b090f7daeaee55bd2c.tar.lz nixfiles-455e717f354f5db05580d0b090f7daeaee55bd2c.tar.zst nixfiles-455e717f354f5db05580d0b090f7daeaee55bd2c.zip |
Remove prettier_d
Poor installation method, slows down installs for a small increase in performance.
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/emacs.nix | 1 | ||||
-rw-r--r-- | user/settings/git.nix | 1 | ||||
-rw-r--r-- | user/settings/javascript.nix | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/user/settings/emacs.nix b/user/settings/emacs.nix index 0d76db53..543a17cc 100644 --- a/user/settings/emacs.nix +++ b/user/settings/emacs.nix @@ -60,7 +60,6 @@ in ava = "npx ava $*"; bunyan = "npx bunyan $*"; mocha = "npx mocha $*"; - prettier = "prettier_d --pkg-conf $*"; standard = "npx standard $*"; tsc = "npx tsc $*"; tslnt = "npx tslnt $*"; diff --git a/user/settings/git.nix b/user/settings/git.nix index 3297240d..154c0a27 100644 --- a/user/settings/git.nix +++ b/user/settings/git.nix @@ -82,7 +82,6 @@ }; ignores = [ ".DS_Store" - ".prettier_d" "*_flymake.*" "*~" "\#*\#" diff --git a/user/settings/javascript.nix b/user/settings/javascript.nix index 16d7f5e0..f9969984 100644 --- a/user/settings/javascript.nix +++ b/user/settings/javascript.nix @@ -31,7 +31,6 @@ in typescript ]) ++ (with pkgs.node2nixPackages; [ pkgs.node2nixPackages."pnpm-4.14.0" - pkgs.node2nixPackages."prettier_d-git://github.com/josephfrazier/prettier_d#b53378114f1ac8331de8d5e49be2190385abbf79" node-gyp node-gyp-build @@ -57,7 +56,6 @@ in avawf = "pnpx ava --fail-fast --watch"; pino = "pino-pretty"; mocha = "pnpx mocha"; - prettier = "prettier_d"; standard = "pnpx standard"; tsc = "pnpx tsc"; tslint = "pnpx tslint"; |