Skip to content

Commit 97891f2

Browse files
committed
feat: migration to vite 5
1 parent b58a546 commit 97891f2

File tree

167 files changed

+14622
-12547
lines changed

Some content is hidden

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

167 files changed

+14622
-12547
lines changed

.babelrc

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

.editorconfig

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

.eslintignore

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

.eslintrc

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

.eslintrc.cjs

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
"eslint:recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:react-hooks/recommended",
8+
],
9+
ignorePatterns: ["dist", ".eslintrc.cjs"],
10+
parser: "@typescript-eslint/parser",
11+
plugins: ["react-refresh", "unused-imports"],
12+
rules: {
13+
"react-refresh/only-export-components": [
14+
"warn",
15+
{ allowConstantExport: true },
16+
],
17+
"no-unused-vars": "off",
18+
"unused-imports/no-unused-imports": "error",
19+
"unused-imports/no-unused-vars": [
20+
"error",
21+
{
22+
vars: "all",
23+
varsIgnorePattern: "^_",
24+
args: "after-used",
25+
argsIgnorePattern: "^_",
26+
},
27+
],
28+
"@typescript-eslint/no-unused-vars": [1],
29+
"@typescript-eslint/no-explicit-any": "off",
30+
"max-len": [0, 200],
31+
},
32+
};

.gitattributes

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

.gitignore

Lines changed: 18 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,25 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
# mac .DS_Store
3-
.DS_Store
4-
5-
# production
6-
/build
1+
# Logs
2+
logs
3+
*.log
74
npm-debug.log*
85
yarn-debug.log*
96
yarn-error.log*
10-
dist/
11-
dist/*
12-
!dist/.gitkeep
7+
pnpm-debug.log*
8+
lerna-debug.log*
139

14-
# dependencies
15-
/node_modules
16-
.npm
1710
node_modules
18-
jspm_packages
19-
build
20-
.happypack
21-
yarn.lock
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
2216
.vscode/*
23-
dll
17+
!.vscode/extensions.json
2418
.idea
25-
26-
# Logs
27-
logs
28-
*.log
29-
npm-debug.log*
30-
31-
# testing
32-
/coverage
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
analysis-chart.html

.prettierrc.json

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

0 commit comments

Comments
 (0)