Skip to content

Commit 492981a

Browse files
committed
Remove packages
1 parent 4fc6d79 commit 492981a

File tree

34 files changed

+677
-5589
lines changed

34 files changed

+677
-5589
lines changed

.eslintignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ node_modules
3434
.DS_Store
3535

3636
# App packaged
37-
storybook-static
3837
dist
3938
backend_dist
4039
scripts
@@ -52,7 +51,6 @@ package.json
5251
*.scss.d.ts
5352
yarn.lock
5453
pnpm-lock.yaml
55-
!.storybook
5654

5755
# E2E tests
58-
tests
56+
tests

.eslintrc.js

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ module.exports = {
66
browser: true,
77
},
88
extends: [
9+
'eslint:recommended',
10+
'plugin:react/recommended',
11+
'plugin:react-hooks/recommended',
12+
'airbnb-base',
913
'airbnb-typescript',
10-
'airbnb/hooks',
1114
'plugin:sonarjs/recommended',
12-
'plugin:storybook/recommended',
1315
// TODO: in a separate pull request enable and fix all classes sorting issues for tailwind
1416
// 'plugin:tailwindcss/recommended',
1517
],
@@ -47,21 +49,6 @@ module.exports = {
4749
code: 140,
4850
},
4951
],
50-
'jsx-a11y/label-has-associated-control': [
51-
2,
52-
{
53-
labelComponents: [
54-
'FormLabel',
55-
],
56-
labelAttributes: [
57-
'label',
58-
],
59-
controlComponents: [
60-
'input',
61-
],
62-
depth: 1,
63-
},
64-
],
6552
'class-methods-use-this': 'off',
6653
// https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#consistent-components-exports
6754
'react-refresh/only-export-components': ['warn'],
@@ -94,6 +81,13 @@ module.exports = {
9481
'object-curly-newline': 'off',
9582
'no-nested-ternary': 'off',
9683
'no-param-reassign': ['error', { props: false }],
84+
'default-param-last': 'off',
85+
'@typescript-eslint/default-param-last': 'off',
86+
'no-unsafe-optional-chaining': 'off',
87+
'function-paren-newline': 'off',
88+
'prefer-regex-literals': 'off',
89+
'react/display-name': 'off',
90+
'no-promise-executor-return': 'off',
9791
'sonarjs/no-duplicate-string': 'off',
9892
'sonarjs/cognitive-complexity': [1, 20],
9993
'sonarjs/no-identical-functions': [0, 5],

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ lerna-debug.log*
1919
coverage
2020
/.nyc_output
2121
**/coverage
22-
storybook-static
2322

2423
# IDEs and editors
2524
/.idea

.storybook/DocsContainer.tsx

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

.storybook/helpers.js

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

.storybook/main.js

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

.storybook/manager-head.html

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

.storybook/manager.js

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

.storybook/preview-head.html

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

.storybook/preview.tsx

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

0 commit comments

Comments
 (0)