Skip to content

Commit

Permalink
chore(deps): update linters (major) (#12550)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
  • Loading branch information
3 people committed Nov 8, 2021
1 parent 0f687f2 commit a17ade8
Show file tree
Hide file tree
Showing 3 changed files with 324 additions and 382 deletions.
4 changes: 2 additions & 2 deletions lib/manager/gradle/shallow/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ export function parseDependencyString(
if (!isDependencyString(input)) {
return null;
}
const [groupId, artifactId, FullValue] = input?.split(':');
const [groupId, artifactId, FullValue] = input.split(':');
if (FullValue === versionLikeSubstring(FullValue)) {
return {
depName: `${groupId}:${artifactId}`,
currentValue: FullValue,
};
}
const [currentValue, dataType] = FullValue?.split('@');
const [currentValue, dataType] = FullValue.split('@');
return {
depName: `${groupId}:${artifactId}`,
currentValue,
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -240,16 +240,16 @@
"@types/traverse": "0.6.32",
"@types/url-join": "4.0.1",
"@types/xmldoc": "1.1.6",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"conventional-changelog-conventionalcommits": "4.6.1",
"cross-env": "7.0.3",
"emojibase-data": "6.2.0",
"eslint": "7.32.0",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-formatter-gha": "1.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-promise": "5.1.1",
"expect-more-jest": "5.4.0",
"glob": "7.2.0",
Expand Down

0 comments on commit a17ade8

Please sign in to comment.