Skip to content

Commit

Permalink
Ignore external directory in git and linters
Browse files Browse the repository at this point in the history
An `external/npm/@keep-network/keep-core/artifacts` directory is created
every time the `threshold-network/solidity-contracts` dependency is
installed. This is due to a workaround in
`threshold-network/solidity-contracts` which allows us to use contracts
which come from different repos and share the same name. Creation of
the `external` folder is a by-product of that. We don't need to track
changes in that folder or run linters on its files.
  • Loading branch information
michalinacienciala committed Jan 31, 2022
1 parent 639cc58 commit 9902012
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
storybook-static
cypress/fixtures
cypress/plugins
cypress/plugins
external/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# Generated
build/
dist/
external/

# Storybook
storybook-static
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
storybook-static
cypress/fixtures
cypress/plugins
cypress/plugins
external

0 comments on commit 9902012

Please sign in to comment.