-
Notifications
You must be signed in to change notification settings - Fork 79
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
Showing
69 changed files
with
1,583 additions
and
829 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,15 +1,31 @@ | ||
# dev environment | ||
/node_modules/ | ||
/.turbo/ | ||
/dist/ | ||
/static/ | ||
/public/ | ||
|
||
# private | ||
.env | ||
##################################################################################### | ||
# Generated | ||
##################################################################################### | ||
|
||
## Packages installed by NPM. https://docs.npmjs.com/about-packages-and-modules | ||
node_modules/ | ||
|
||
## Vitest coverage output. https://vitest.dev/guide/coverage.html | ||
coverage/ | ||
|
||
## Turbo outputs. | ||
.turbo/ | ||
|
||
## Vite build outputs for React. | ||
build/ | ||
|
||
# file system configs | ||
desktop.ini | ||
.DS_Store | ||
## Build outputs from `tsc`, specified by `tsconfig.json`. | ||
dist/ | ||
|
||
tools/ | ||
|
||
##################################################################################### | ||
# Development Environment | ||
##################################################################################### | ||
|
||
## Static assets. | ||
public/ | ||
|
||
## Private environment variables. | ||
.env | ||
.env.* | ||
!.env.sample |
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,22 @@ | ||
// @ts-check | ||
|
||
/** | ||
* @type {import('eslint').Linter.Config} | ||
*/ | ||
const config = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: 'tsconfig.json', | ||
}, | ||
plugins: ['@typescript-eslint/eslint-plugin'], | ||
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], | ||
env: { | ||
browser: true, | ||
es6: true, | ||
node: true, | ||
}, | ||
ignorePatterns: ['*.config.*', '*.cjs'], | ||
}; | ||
|
||
module.exports = config; |
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,28 +1,52 @@ | ||
##################################################################################### | ||
# Generated | ||
##################################################################################### | ||
|
||
## Packages installed by NPM. https://docs.npmjs.com/about-packages-and-modules | ||
node_modules/ | ||
|
||
# Ignore build directories | ||
## Vitest coverage output. https://vitest.dev/guide/coverage.html | ||
coverage/ | ||
|
||
## ESLint cache. https://eslint.org/docs/latest/use/command-line-interface#caching | ||
.eslintcache | ||
|
||
## Vite build output for React. | ||
build/ | ||
dist/ | ||
|
||
# Ignore cdk related directories | ||
.cdk.staging | ||
cdk.out | ||
## `tsc` output, specified by tsconfig.json | ||
dist/ | ||
|
||
# Ignore Turbo directory | ||
.turbo | ||
## CDK output. | ||
cdk.out/ | ||
|
||
# Ignore .env files | ||
*.env | ||
## Logs. | ||
*.log | ||
.pnpm-debug.log* | ||
|
||
# Ignore various editor-specific files | ||
.idea | ||
.vscode | ||
|
||
# Ignore various log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
*.log.* | ||
##################################################################################### | ||
# Operating System | ||
##################################################################################### | ||
|
||
# Misc | ||
## MacOS folder settings. https://en.wikipedia.org/wiki/.DS_Store | ||
.DS_Store | ||
|
||
## Windows folder icon settings. https://learn.microsoft.com/en-us/windows/win32/shell/how-to-customize-folders-with-desktop-ini#use-a-desktopini-file | ||
Desktop.ini | ||
|
||
|
||
##################################################################################### | ||
# Development Environment | ||
##################################################################################### | ||
|
||
## Private environment variables. | ||
.env | ||
.env.* | ||
!.env.example | ||
|
||
## JetBrains IDE settings. | ||
.idea/ | ||
|
||
## VSCode settings. | ||
.vscode/ |
This file was deleted.
Oops, something went wrong.
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,16 +1,31 @@ | ||
# dev environment | ||
/node_modules/ | ||
/.turbo/ | ||
/dist/ | ||
/static/ | ||
/public/ | ||
|
||
# private | ||
.env | ||
##################################################################################### | ||
# Generated | ||
##################################################################################### | ||
|
||
## Packages installed by NPM. https://docs.npmjs.com/about-packages-and-modules | ||
node_modules/ | ||
|
||
## Vitest coverage output. https://vitest.dev/guide/coverage.html | ||
coverage/ | ||
|
||
## Turbo outputs. | ||
.turbo/ | ||
|
||
## Vite build outputs for React. | ||
build/ | ||
|
||
# file system configs | ||
desktop.ini | ||
.DS_Store | ||
## Build outputs from `tsc`, specified by `tsconfig.json`. | ||
dist/ | ||
|
||
# misc | ||
README.md | ||
|
||
##################################################################################### | ||
# Development Environment | ||
##################################################################################### | ||
|
||
## Static assets. | ||
public/ | ||
|
||
## Private environment variables. | ||
.env | ||
.env.* | ||
!.env.sample |
File renamed without changes.
Oops, something went wrong.