Skip to content

Commit 9b28515

Browse files
committedJan 27, 2024
cleanup
1 parent 2890ae2 commit 9b28515

File tree

6,591 files changed

+6448
-1446967
lines changed

Some content is hidden

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

6,591 files changed

+6448
-1446967
lines changed
 

‎.eslintrc.cjs

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ module.exports = {
33
env: { browser: true, es2020: true },
44
extends: [
55
'eslint:recommended',
6-
'plugin:@typescript-eslint/recommended',
6+
'plugin:react/recommended',
7+
'plugin:react/jsx-runtime',
78
'plugin:react-hooks/recommended',
89
],
910
ignorePatterns: ['dist', '.eslintrc.cjs'],
10-
parser: '@typescript-eslint/parser',
11+
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
12+
settings: { react: { version: '18.2' } },
1113
plugins: ['react-refresh'],
1214
rules: {
1315
'react-refresh/only-export-components': [

‎.gitignore

+22-62
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,25 @@
1-
# ignore test results
2-
tests/test/*
3-
4-
# ignore eggs
5-
.eggs/
6-
7-
# generic ignore list:
8-
*.lst
9-
10-
# Compiled source
11-
*.com
12-
*.class
13-
*.dll
14-
*.exe
15-
*.o
16-
*.so
17-
*.pyc
18-
19-
# Packages
20-
# it's better to unpack these files and commit the raw source
21-
# git has its own built in compression methods
22-
*.7z
23-
*.dmg
24-
*.gz
25-
*.iso
26-
*.jar
27-
*.rar
28-
*.tar
29-
*.zip
30-
31-
# Logs and databases
1+
# Logs
2+
logs
323
*.log
33-
*.sql
34-
*.sqlite
35-
36-
# OS generated files
37-
.DS_Store
38-
.DS_Store?
39-
._*
40-
.Spotlight-V100
41-
.Trashes
42-
ehthumbs.db
43-
Thumbs.db
44-
45-
# Gedit temporary files
46-
*~
47-
48-
# libreoffice lock files:
49-
.~lock*
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
509

51-
# IDE-specific items
52-
.idea/
53-
54-
# pytest-related
55-
.cache/
56-
.coverage
57-
.pytest_cache
58-
59-
doc/
60-
build/
6110
node_modules/
62-
refgenie.egg-info/
63-
64-
*ipynb_checkpoints*
65-
11+
node_modules/*
12+
dist
13+
dist-ssr
14+
*.local
15+
16+
# Editor directories and files
17+
.vscode/*
18+
!.vscode/extensions.json
19+
.idea
20+
.DS_Store
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?

0 commit comments

Comments
 (0)