-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move to one .gitignore file in the root (#75)
- Loading branch information
1 parent
9ce8e29
commit 3cf52f9
Showing
4 changed files
with
24 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,52 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# Dependencies | ||
node_modules | ||
# dependencies | ||
node_modules/ | ||
.pnp | ||
.pnp.js | ||
|
||
# Local env files | ||
# local env files | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Testing | ||
# testing | ||
coverage | ||
|
||
# Turbo | ||
# turbo | ||
.turbo | ||
|
||
# Vercel | ||
# vercel | ||
.vercel | ||
|
||
# Build Outputs | ||
# build outputs | ||
.next/ | ||
out/ | ||
dist | ||
|
||
|
||
# Debug | ||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Misc | ||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
# ide | ||
.vscode | ||
.idea | ||
|
||
# entry config file | ||
.sentryclirc | ||
.env.sentry-build-plugin | ||
|
||
# for packages/lib | ||
generated/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.