Skip to content

Commit

Permalink
📦 Re-upgrade packages
Browse files Browse the repository at this point in the history
  • Loading branch information
himynameisdave committed Sep 25, 2023
1 parent 3246003 commit 141cdb6
Show file tree
Hide file tree
Showing 4 changed files with 247 additions and 247 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
"release": "np --no-yarn"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "8.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "16.0.0",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-svelte": "^2.33.1",
"eslint-plugin-svelte": "^2.33.2",
"eslint-plugin-unicorn": "^48.0.1"
},
"devDependencies": {
Expand All @@ -33,7 +33,7 @@
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"np": "^8.0.4",
"svelte": "^4.2.0",
"svelte": "^4.2.1",
"typescript": "^5.2.2"
},
"files": [
Expand Down
1 change: 1 addition & 0 deletions rules/eslint/style/off.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ module.exports = {
'no-negated-condition': 0,
'no-nested-ternary': 0,
'no-new-object': 0,
'no-object-constructor': 0,
'no-plusplus': 0,
'no-restricted-syntax': 0,
'no-spaced-func': 0,
Expand Down
8 changes: 6 additions & 2 deletions rules/eslint/style/on.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,14 @@ module.exports = {
// https://eslint.org/docs/rules/no-negated-condition
'no-negated-condition': 'off',
// disallow nested ternary expressions
'no-nested-ternary': 'off',
// Using unicorn/no-nested-ternary instead: https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/no-nested-ternary.md
'no-nested-ternary': 'off',
// disallow use of the Object constructor
'no-new-object': 'error',
// DEPRECATED: use no-object-constructor
'no-new-object': 'off',
// Disallow Object constructors
// https://eslint.org/docs/latest/rules/no-new-object
'no-object-constructor': 'error',
// disallow use of unary operators, ++ and --
// https://eslint.org/docs/rules/no-plusplus
'no-plusplus': ['error', {
Expand Down
Loading

0 comments on commit 141cdb6

Please sign in to comment.