Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
akiver committed Oct 30, 2024
1 parent 776d169 commit bb82c51
Show file tree
Hide file tree
Showing 34 changed files with 1,289 additions and 1,374 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package-lock.json
build
build-assets
out
output
dist
static
.DS_Store
Expand Down
9 changes: 3 additions & 6 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { fixupPluginRules } from '@eslint/compat';
import js from '@eslint/js';
import ts from 'typescript-eslint';
import reactRecommended from 'eslint-plugin-react/configs/recommended.js';
import reactHooks from 'eslint-plugin-react-hooks';
import checkFile from 'eslint-plugin-check-file';
import localRules from 'eslint-plugin-local-rules';
import deprecation from 'eslint-plugin-deprecation';
import lingui from 'eslint-plugin-lingui';
import tailwind from 'eslint-plugin-tailwindcss';
import prettier from 'eslint-plugin-prettier/recommended';
Expand Down Expand Up @@ -60,10 +58,9 @@ export default [
{
plugins: {
'check-file': checkFile,
deprecation: fixupPluginRules(deprecation),
lingui: fixupPluginRules(lingui),
lingui,
'local-rules': localRules,
'react-hooks': fixupPluginRules(reactHooks),
'react-hooks': reactHooks,
},

languageOptions: {
Expand Down Expand Up @@ -118,6 +115,7 @@ export default [
format: ['camelCase', 'snake_case'],
},
],
'@typescript-eslint/no-deprecated': 'error',
'@typescript-eslint/no-inferrable-types': 0,
'@typescript-eslint/no-unused-vars': [
'error',
Expand All @@ -144,7 +142,6 @@ export default [
},
],
'check-file/no-index': 'error',
'deprecation/deprecation': 'error',
eqeqeq: 'error',
'lingui/no-unlocalized-strings': 'off',
'lingui/t-call-in-function': 'error',
Expand Down
Loading

0 comments on commit bb82c51

Please sign in to comment.