Skip to content

Commit

Permalink
♻️ Don't Prettify pnpm-lock.yaml (#130)
Browse files Browse the repository at this point in the history
### 🕓 Changelog

Formatting `pnpm`'s lockfile `pnpm-lock.yaml` doesn't make much sense.
Plus, given that that file is huge, ignoring it makes a difference. On
my machine, `pnpm prettier:check` goes down from 6.6s to 5.5s with this
change. Imagine what you could do with all those saved seconds!

---------
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
Co-authored-by: sudo rm -rf --no-preserve-root / <pcaversaccio@users.noreply.github.com>
Co-authored-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
fvictorio authored Aug 18, 2024
1 parent befb986 commit 0e6c173
Show file tree
Hide file tree
Showing 4 changed files with 2,342 additions and 4,763 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
pnpm-lock.yaml
interface
lib
cache
Expand Down
1 change: 1 addition & 0 deletions .solhintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
pnpm-lock.yaml
interface
lib
cache
Expand Down
1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ module.exports = tseslint.config(
{
ignores: [
"node_modules/**",
"pnpm-lock.yaml",
"interface/**",
"lib/**",
"cache/**",
Expand Down
Loading

0 comments on commit 0e6c173

Please sign in to comment.