Skip to content

Commit

Permalink
chore(deps-dev): bump eslint-plugin-unicorn from 51.0.1 to 52.0.0 (#411)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump eslint-plugin-unicorn from 51.0.1 to 52.0.0

Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 51.0.1 to 52.0.0.
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v51.0.1...v52.0.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-unicorn
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

* fix

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julian Grinblat <julian@dotcore.co.il>
  • Loading branch information
dependabot[bot] and perrin4869 committed May 1, 2024
1 parent 9c6edb8 commit ce9969a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 18 deletions.
32 changes: 22 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"extends": ["airbnb", "plugin:react/jsx-runtime", "plugin:unicorn/recommended", "plugin:eslint-comments/recommended"],
"extends": [
"airbnb",
"plugin:react/jsx-runtime",
"plugin:unicorn/recommended",
"plugin:eslint-comments/recommended"
],
"plugins": ["unicorn", "eslint-comments"],
"env": {
"browser": true
Expand All @@ -10,16 +15,23 @@
},
"rules": {
"max-len": ["error", { "code": 100, "ignoreComments": true }],
"react/function-component-definition": [2, {"namedComponents":"arrow-function"}],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": [
"test/**",
"karma.conf.cjs",
"examples/rollup.config.js"
]
}],
"unicorn/prevent-abbreviations": 0,
"react/function-component-definition": [
2,
{ "namedComponents": "arrow-function" }
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"test/**",
"karma.conf.cjs",
"examples/rollup.config.js"
]
}
],
"unicorn/no-null": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/no-anonymous-default-export": 0,
"eslint-comments/no-unused-disable": "error"
},
"overrides": [
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-unicorn": "^52.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
Expand Down

0 comments on commit ce9969a

Please sign in to comment.