Skip to content

Commit c117823

Browse files
dependabot[bot]XhmikosR
andauthoredMay 16, 2023
Build(deps-dev): Bump eslint-plugin-unicorn from 46.0.0 to 47.0.0 (#38574)
* Build(deps-dev): Bump eslint-plugin-unicorn from 46.0.0 to 47.0.0 Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 46.0.0 to 47.0.0. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](sindresorhus/eslint-plugin-unicorn@v46.0.0...v47.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> * Disable new rules since our currently supported browsers don't support them --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
1 parent dcb7f8b commit c117823

File tree

3 files changed

+62
-22
lines changed

3 files changed

+62
-22
lines changed
 

‎.eslintrc.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,14 @@
8888
"unicorn/no-null": "off",
8989
"unicorn/no-typeof-undefined": "off",
9090
"unicorn/no-unused-properties": "error",
91+
"unicorn/numeric-separators-style": "off",
9192
"unicorn/prefer-array-flat": "off",
93+
"unicorn/prefer-at": "off",
9294
"unicorn/prefer-dom-node-dataset": "off",
9395
"unicorn/prefer-module": "off",
9496
"unicorn/prefer-query-selector": "off",
9597
"unicorn/prefer-spread": "off",
98+
"unicorn/prefer-string-replace-all": "off",
9699
"unicorn/prevent-abbreviations": "off"
97100
},
98101
"overrides": [
@@ -189,8 +192,7 @@
189192
},
190193
"rules": {
191194
"no-new": "off",
192-
"unicorn/no-array-for-each": "off",
193-
"unicorn/numeric-separators-style": "off"
195+
"unicorn/no-array-for-each": "off"
194196
}
195197
},
196198
{

‎package-lock.json

+57-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"eslint-plugin-html": "^7.1.0",
121121
"eslint-plugin-import": "^2.27.5",
122122
"eslint-plugin-markdown": "^3.0.0",
123-
"eslint-plugin-unicorn": "^46.0.0",
123+
"eslint-plugin-unicorn": "^47.0.0",
124124
"find-unused-sass-variables": "^5.0.0",
125125
"globby": "^11.1.0",
126126
"hammer-simulator": "0.0.1",

0 commit comments

Comments
 (0)
Please sign in to comment.