-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7ed5e4f
Showing
26 changed files
with
5,398 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.git/ | ||
.gitignore | ||
**/.gitkeep | ||
**/.DS_Store | ||
.dockerignore | ||
Dockerfile* | ||
docker-compose*.yml | ||
README.md | ||
certs/ | ||
docs/ | ||
notes/ | ||
|
||
# pass env vars through docker-compose | ||
# or mount .env* in dev | ||
.env* | ||
envs/ | ||
dist/ | ||
|
||
# needed for sqlite | ||
# prisma/db.dev | ||
# postgres | ||
prisma/pg-data/data-* | ||
|
||
# named volumes | ||
.next/ | ||
node_modules/ | ||
|
||
# cypress | ||
tests-e2e/node_modules/ | ||
|
||
# jest coverage | ||
coverage/ |
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,8 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false |
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,35 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
}, | ||
"plugins": ["@typescript-eslint"], | ||
"extends": [ | ||
"next/core-web-vitals", | ||
"plugin:@typescript-eslint/recommended", | ||
"airbnb", | ||
"airbnb/hooks", | ||
"airbnb-typescript", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:react/jsx-runtime" | ||
], | ||
"rules": { | ||
"no-underscore-dangle": "off", | ||
"import/extensions": [ | ||
"error", | ||
{ | ||
"mjs": "always" | ||
} | ||
], | ||
"import/prefer-default-export": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
"argsIgnorePattern": "^_", | ||
"varsIgnorePattern": "^_", | ||
"caughtErrorsIgnorePattern": "^_" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.