Skip to content

Commit

Permalink
feat(global): update dependencies and use new bundler (#1198)
Browse files Browse the repository at this point in the history
* feat(global): update dependencies and use new bundler

* feat(css): rename module files

* fix(ts): errors

* feat(deps): tix ts errors

* feat(css): rename stylus files for vite

* chore(electron): update to v21.3

* fix(eslint): issues

---------

Co-authored-by: Martin Schuhfuss <m.schuhfuss@gmail.com>
  • Loading branch information
pwambach and usefulthink authored May 9, 2023
1 parent 04791e9 commit e32c7d6
Show file tree
Hide file tree
Showing 133 changed files with 19,555 additions and 34,597 deletions.
11 changes: 6 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"prettier",
"prettier/@typescript-eslint"
"prettier"
],
"settings": {},
"env": {
Expand Down Expand Up @@ -168,7 +167,7 @@
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 2,
"no-shadow": 2,
"no-shadow": 0,
"no-shadow-restricted-names": 2,
"no-undef": 2,
"no-undef-init": 2,
Expand Down Expand Up @@ -341,11 +340,13 @@
"@typescript-eslint/no-use-before-define": [2, "nofunc"],
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-unused-vars": 2,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/no-shadow": 0,
"react/prop-types": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
"react-hooks/exhaustive-deps": "warn",
"react/no-children-prop": 0
}
}
Loading

0 comments on commit e32c7d6

Please sign in to comment.