Skip to content

Commit 1e78225

Browse files
committed
App rebuilt from the ground up
1 parent 94ec091 commit 1e78225

112 files changed

Lines changed: 12791 additions & 16964 deletions

Some content is hidden

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

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.env

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
out
4+
.gitignore

.eslintrc.cjs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
extends: [
3+
'eslint:recommended',
4+
'plugin:react/recommended',
5+
'plugin:react/jsx-runtime',
6+
'@electron-toolkit/eslint-config-ts/recommended',
7+
'@electron-toolkit/eslint-config-prettier'
8+
],
9+
rules: {
10+
'prettier/prettier': [
11+
'error',
12+
{
13+
endOfLine: 'auto'
14+
}
15+
]
16+
}
17+
}

.eslintrc.json

Lines changed: 0 additions & 64 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
node_modules
2-
.DS_Store
32
dist
4-
dist-ssr
5-
*.local
6-
7-
# production
8-
/main
9-
/dist
10-
/src/out
11-
12-
# debug
13-
npm-debug.log*
14-
yarn-debug.log*
15-
yarn-error.log*
16-
17-
# local env files
18-
.env.local
19-
.env.development.local
20-
.env.test.local
21-
.env.production.local
3+
out
4+
.DS_Store
5+
*.log*

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shamefully-hoist=true

.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
out
2+
dist
3+
pnpm-lock.yaml
4+
LICENSE.md
5+
tsconfig.json
6+
tsconfig.*.json

.prettierrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)