Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
oae committed Oct 2, 2022
0 parents commit 7ed5e4f
Show file tree
Hide file tree
Showing 26 changed files with 5,398 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .dockerignore
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/
8 changes: 8 additions & 0 deletions .editorconfig
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
35 changes: 35 additions & 0 deletions .eslintrc.json
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": "^_"
}
]
}
}
Loading

0 comments on commit 7ed5e4f

Please sign in to comment.