Skip to content

Commit

Permalink
Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.7.0 (#111)
Browse files Browse the repository at this point in the history
* Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.7.0

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 7.17.0 to 8.7.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.7.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Replaced `eslint-config-airbnb-typescript` with ` @kesills/eslint-config-airbnb-typescript`

* Updated eslint config file

* Fixed eslint errors

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: rmanaem <rmanaem@protonmail.ch>
Co-authored-by: Arman Jahanpour <77515879+rmanaem@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 30, 2024
1 parent eeca95e commit bb33f9a
Show file tree
Hide file tree
Showing 4 changed files with 162 additions and 170 deletions.
9 changes: 8 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
'plugin:cypress/recommended',
'airbnb',
'airbnb/hooks',
'airbnb-typescript',
'@kesills/airbnb-typescript',
'prettier',
],
ignorePatterns: ['dist', '.eslintrc.cjs', 'lint-staged.config.js'],
Expand All @@ -33,5 +33,12 @@ module.exports = {
'tsdoc/syntax': 'warn',
// Disabling this rule allows us to use blanket exports from components
'import/prefer-default-export': 'off',
/*
The fork of the eslint-config-airbnb-typescript package has added ESLint Stylistic plugin
to the config. see:https://github.com/Kenneth-Sills/eslint-config-airbnb-typescript/pull/3
Some of the stylistic rules are not compatible with our current prettier config so we disable them.
*/
'@stylistic/indent': 'off',
'@stylistic/comma-dangle': 'off',
},
};
Loading

0 comments on commit bb33f9a

Please sign in to comment.