-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Harmonize .prettierignore and .gitignore
- Loading branch information
1 parent
b13c2f3
commit d6622cb
Showing
13 changed files
with
102 additions
and
11 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,8 +1,8 @@ | ||
.idea | ||
|
||
node_modules | ||
.yarn | ||
.npm | ||
.babelCache | ||
schema.graphql | ||
|
||
.env.local | ||
.env.secrets |
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,7 +1,17 @@ | ||
# Copy from .gitignore, remove once prettier v3 is in use | ||
.idea | ||
|
||
.npm | ||
.babelCache | ||
|
||
.env.local | ||
.env.secrets | ||
|
||
# Go Templates can not be formatted with prettier (https://github.com/prettier/prettier/issues/6517) | ||
chart/*/templates/* | ||
|
||
# Microservices are checked by each microservice on its own | ||
admin/ | ||
api/ | ||
site/ | ||
schema.graphql | ||
lang/ | ||
create-app/ |
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,13 +1,18 @@ | ||
.env | ||
.env.local | ||
.env.secrets | ||
|
||
/node_modules | ||
|
||
/build | ||
|
||
/lang/ | ||
/lang-compiled/ | ||
/lang-extracted/ | ||
|
||
fragmentTypes.json | ||
/schema.* | ||
|
||
**/*.generated.ts | ||
/block-meta.json | ||
/comet-config.json |
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,7 +1,25 @@ | ||
# Copy from .gitignore until prettier v3 is in use | ||
.env | ||
.env.local | ||
.env.secrets | ||
|
||
/node_modules | ||
|
||
/build | ||
|
||
/lang/ | ||
/lang-compiled/ | ||
/lang-extracted/ | ||
|
||
fragmentTypes.json | ||
/schema.* | ||
|
||
**/*.generated.ts | ||
/block-meta.json | ||
/comet-config.json | ||
|
||
package-lock.json | ||
.gitignore | ||
*.lock | ||
*.gql | ||
*.dist | ||
src/fragmentTypes.json | ||
src/graphql.generated.ts |
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
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,5 +1,6 @@ | ||
# compiled output | ||
/dist | ||
|
||
/node_modules | ||
.env | ||
.env.local | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Copy from .gitignore until prettier v3 is in use | ||
/lib |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
# Lang files | ||
/lang-compiled/ | ||
/lang-extracted/ | ||
/lang/ | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
/preBuild/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env.local | ||
.env.secrets | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
.env | ||
schema.gql | ||
schema.json | ||
block-meta.json | ||
src/**/*.generated.ts | ||
preBuild/**/*.generated.ts | ||
comet-config.json | ||
|
||
public/sitemap.xml | ||
public/robots.txt | ||
|
||
tsconfig.tsbuildinfo |
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