Skip to content

Commit 464fe51

Browse files
authored
Merge branch 'develop' into fix_errors
2 parents e84c633 + cbe658a commit 464fe51

156 files changed

Lines changed: 8296 additions & 24157 deletions

File tree

Some content is hidden

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

.eslintrc.cjs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import reactHooks from "eslint-plugin-react-hooks";
4+
import reactRefresh from "eslint-plugin-react-refresh";
5+
import tseslint from "typescript-eslint";
6+
7+
export default tseslint.config(
8+
{ ignores: ["dist"] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ["**/*.{ts,tsx}"],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
"react-hooks": reactHooks,
18+
"react-refresh": reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
"react-refresh/only-export-components": [
23+
"warn",
24+
{ allowConstantExport: true },
25+
],
26+
},
27+
}
28+
);

.eslintrc.cjs:Zone.Identifier

Whitespace-only changes.

.eslintrc.js

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

.gitignore

Lines changed: 27 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,42 @@
1-
# lib
2-
lib
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
32

4-
# Logs
5-
logs
6-
*.log
7-
npm-debug.log*
8-
yarn-debug.log*
9-
yarn-error.log*
10-
11-
# Runtime data
12-
pids
13-
*.pid
14-
*.seed
15-
*.pid.lock
16-
17-
# Directory for instrumented libs generated by jscoverage/JSCover
18-
lib-cov
19-
20-
# Coverage directory used by tools like istanbul
21-
coverage
22-
23-
# nyc test coverage
24-
.nyc_output
25-
26-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27-
.grunt
28-
29-
# Bower dependency directory (https://bower.io/)
30-
bower_components
31-
32-
# node-waf configuration
33-
.lock-wscript
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
347

35-
# Compiled binary addons (https://nodejs.org/api/addons.html)
36-
build/Release
8+
# testing
9+
/coverage
3710

38-
# Dependency directories
39-
node_modules/
40-
jspm_packages/
11+
# production
12+
/build
4113

42-
# TypeScript v1 declaration files
43-
typings/
44-
45-
# Optional npm cache directory
46-
.npm
47-
48-
# Optional eslint cache
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
4920
.eslintcache
5021

51-
# Optional REPL history
52-
.node_repl_history
53-
54-
# Output of 'npm pack'
55-
*.tgz
56-
57-
# Yarn Integrity file
58-
.yarn-integrity
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
5925

60-
# dotenv environment variables file
61-
.env
6226

63-
# next.js build output
64-
.next
65-
src/stories/.DS_Store
66-
src/.DS_Store
27+
build-storybook.log
6728

68-
# storybook
69-
storybook-static/
7029

7130
# build
7231
build/
7332
.DS_Store
7433
lib/
7534
dist/
35+
.pnp.*
36+
.yarn/*
37+
!.yarn/patches
38+
!.yarn/plugins
39+
!.yarn/releases
40+
!.yarn/sdks
41+
!.yarn/versions
42+

.gitignore:Zone.Identifier

Whitespace-only changes.

.prettierrc.js

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

.storybook/main.ts:Zone.Identifier

Whitespace-only changes.

.storybook/preview.ts:Zone.Identifier

Whitespace-only changes.

.storybook/webpack.config.js

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

.vscode/settings.json

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

0 commit comments

Comments
 (0)