Skip to content

Commit 702255a

Browse files
committedMar 25, 2024
Move code into new repository
0 parents  commit 702255a

File tree

152 files changed

+38309
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+38309
-0
lines changed
 

‎.eslintrc.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/** @type {import('eslint').Linter.Config} */
2+
module.exports = {
3+
extends: ['@remix-run/eslint-config', '@remix-run/eslint-config/node'],
4+
rules: {
5+
'@typescript-eslint/no-extra-semi': ['off'],
6+
'@typescript-eslint/no-unused-vars': [
7+
'warn',
8+
{
9+
// vars: "all",
10+
varsIgnorePattern: '^_',
11+
// args: "after-used",
12+
argsIgnorePattern: '^_',
13+
},
14+
],
15+
},
16+
}

‎.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
node_modules
2+
.DS_STORE
3+
.wrangler
4+
5+
/.cache
6+
/build
7+
/dist
8+
/public/build
9+
/.mf
10+
.env
11+
.dev.vars

0 commit comments

Comments
 (0)
Please sign in to comment.