Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 7ed5e4f

Browse files
committed
feat: initial commit
0 parents  commit 7ed5e4f

26 files changed

+5398
-0
lines changed

.dockerignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.git/
2+
.gitignore
3+
**/.gitkeep
4+
**/.DS_Store
5+
.dockerignore
6+
Dockerfile*
7+
docker-compose*.yml
8+
README.md
9+
certs/
10+
docs/
11+
notes/
12+
13+
# pass env vars through docker-compose
14+
# or mount .env* in dev
15+
.env*
16+
envs/
17+
dist/
18+
19+
# needed for sqlite
20+
# prisma/db.dev
21+
# postgres
22+
prisma/pg-data/data-*
23+
24+
# named volumes
25+
.next/
26+
node_modules/
27+
28+
# cypress
29+
tests-e2e/node_modules/
30+
31+
# jest coverage
32+
coverage/

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = false
8+
insert_final_newline = false

.eslintrc.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"project": "./tsconfig.json"
5+
},
6+
"plugins": ["@typescript-eslint"],
7+
"extends": [
8+
"next/core-web-vitals",
9+
"plugin:@typescript-eslint/recommended",
10+
"airbnb",
11+
"airbnb/hooks",
12+
"airbnb-typescript",
13+
"plugin:@typescript-eslint/recommended",
14+
"plugin:prettier/recommended",
15+
"plugin:react/jsx-runtime"
16+
],
17+
"rules": {
18+
"no-underscore-dangle": "off",
19+
"import/extensions": [
20+
"error",
21+
{
22+
"mjs": "always"
23+
}
24+
],
25+
"import/prefer-default-export": "off",
26+
"@typescript-eslint/no-unused-vars": [
27+
"error",
28+
{
29+
"argsIgnorePattern": "^_",
30+
"varsIgnorePattern": "^_",
31+
"caughtErrorsIgnorePattern": "^_"
32+
}
33+
]
34+
}
35+
}

0 commit comments

Comments
 (0)