Skip to content

Commit 3200951

Browse files
dependabot[bot]slifty
authored andcommitted
Bump the eslint group across 1 directory with 3 updates
Bumps the eslint group with 3 updates in the / directory: [eslint-config-love](https://github.com/mightyiam/eslint-config-love), [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `eslint-config-love` from 130.0.0 to 133.0.0 - [Release notes](https://github.com/mightyiam/eslint-config-love/releases) - [Changelog](https://github.com/mightyiam/eslint-config-love/blob/main/CHANGELOG.md) - [Commits](mightyiam/eslint-config-love@v130.0.0...v133.0.0) Updates `eslint-plugin-jsdoc` from 61.0.1 to 61.1.2 - [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases) - [Changelog](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/.releaserc) - [Commits](gajus/eslint-plugin-jsdoc@v61.0.1...v61.1.2) Updates `typescript-eslint` from 8.46.0 to 8.46.1 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/typescript-eslint) --- updated-dependencies: - dependency-name: eslint-config-love dependency-version: 133.0.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: eslint-plugin-jsdoc dependency-version: 61.1.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint - dependency-name: typescript-eslint dependency-version: 8.46.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: eslint ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0a33d19 commit 3200951

File tree

5 files changed

+84
-84
lines changed

5 files changed

+84
-84
lines changed

package-lock.json

Lines changed: 78 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@
114114
"angular-eslint": "^20.3.0",
115115
"dotenv": "^8.2.0",
116116
"eslint": "^9.37.0",
117-
"eslint-config-love": "^130.0.0",
117+
"eslint-config-love": "^133.0.0",
118118
"eslint-config-prettier": "^10.1.8",
119119
"eslint-plugin-jasmine": "^4.2.2",
120-
"eslint-plugin-jsdoc": "^61.0.1",
120+
"eslint-plugin-jsdoc": "^61.1.2",
121121
"eslint-plugin-prefer-arrow": "^1.2.2",
122122
"eslint-plugin-prettier": "^5.5.4",
123123
"eslint-plugin-storybook": "^9.1.10",
@@ -142,6 +142,6 @@
142142
"ts-node": "^10.9.1",
143143
"tslib": "^2.0.0",
144144
"typescript": "5.8.3",
145-
"typescript-eslint": "^8.46.0"
145+
"typescript-eslint": "^8.46.1"
146146
}
147147
}

src/app/directive/components/directive-edit/test-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class MockDirectiveRepo {
6060
const testDirectiveId = '39b2a5fa-3508-4030-91b6-21dc6ec7a1ab';
6161
const newDirective: DirectiveData = {
6262
directiveId: testDirectiveId,
63-
archiveId: parseInt(directive.archiveId.toString()),
63+
archiveId: parseInt(directive.archiveId.toString(), 10),
6464
type: directive.type,
6565
createdDt: new Date(),
6666
updatedDt: new Date(),

src/app/pledge/components/new-pledge/new-pledge.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class NewPledgeComponent implements OnInit, AfterViewInit {
9898
const params = split.pop();
9999
if (params.includes('amount')) {
100100
try {
101-
pledgeAmount = parseInt(params.split('=').pop(), 0);
101+
pledgeAmount = parseInt(params.split('=').pop(), 10);
102102
} catch (err) {}
103103
}
104104
}

src/app/shared/services/api/record.repo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const convertStelaTagToTagVO = (
128128
archiveId: string,
129129
): TagVO =>
130130
new TagVO({
131-
tagId: Number.parseInt(stelaTag.id),
131+
tagId: Number.parseInt(stelaTag.id, 10),
132132
name: resolveTagName(stelaTag),
133133
type: stelaTag.type,
134134
archiveId: Number.parseInt(archiveId, 10),

0 commit comments

Comments
 (0)