Skip to content

Commit 4201320

Browse files
chore(deps-dev): Bump typescript-eslint from 8.17.0 to 8.18.0 (#589)
* chore(deps-dev): Bump typescript-eslint from 8.17.0 to 8.18.0 Bumps [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) from 8.17.0 to 8.18.0. - [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.18.0/packages/typescript-eslint) --- updated-dependencies: - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * disable new violation --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bryan Mishkin <[email protected]>
1 parent c9f8722 commit 4201320

File tree

2 files changed

+51
-244
lines changed

2 files changed

+51
-244
lines changed

lib/rule-options-list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ function ruleOptionToColumnValues(ruleOption: RuleOption): {
6969
? undefined
7070
: Array.isArray(ruleOption.default)
7171
? arrayToString(ruleOption.default)
72-
: `\`${String(ruleOption.default)}\``,
72+
: `\`${String(ruleOption.default)}\``, // eslint-disable-line @typescript-eslint/no-base-to-string
7373
[COLUMN_TYPE.DEPRECATED]: ruleOption.deprecated ? 'Yes' : undefined,
7474
[COLUMN_TYPE.DESCRIPTION]: ruleOption.description,
7575
[COLUMN_TYPE.ENUM]:
7676
ruleOption.enum && ruleOption.enum.length > 0
77-
? `\`${ruleOption.enum.join('`, `')}\``
77+
? `\`${ruleOption.enum.join('`, `')}\`` // eslint-disable-line @typescript-eslint/no-base-to-string
7878
: undefined,
7979
[COLUMN_TYPE.NAME]: `\`${ruleOption.name}\``,
8080
[COLUMN_TYPE.REQUIRED]: ruleOption.required ? 'Yes' : undefined,

0 commit comments

Comments
 (0)