Skip to content

Commit

Permalink
fix: add default ecosystem configs folder to .prettierignore (#2707)
Browse files Browse the repository at this point in the history
## What ❔

Added `configs` folder in the root directory to `.prettierignore`

## Why ❔

Ecosystem configs may include generated JS config files that may not
pass `zk fmt --check`.
This change prevents errors during `zk fmt` execution.

## Checklist

- [x] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [x] Tests for the changes have been added / updated.
- [x] Documentation comments have been added / updated.
- [x] Code has been formatted via `zk fmt` and `zk lint`.
  • Loading branch information
sanekmelnikov authored Aug 21, 2024
1 parent 75851ff commit 57d70e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ binaryen
system-contracts
artifacts-zk
cache-zk
// Ignore directories with OZ and forge submodules.
# Ignore directories with OZ and forge submodules.
contracts/l1-contracts/lib

# Ignore ecosystem configs
/configs/

**/.git
**/node_modules

0 comments on commit 57d70e8

Please sign in to comment.