Skip to content

chore(deps): update dependency eslint-config-xo to v0.58.1#895

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/eslint-config-xo-0.x
Open

chore(deps): update dependency eslint-config-xo to v0.58.1#895
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/eslint-config-xo-0.x

Conversation

@renovate

@renovate renovate Bot commented Sep 1, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
eslint-config-xo 0.41.00.58.1 age confidence

Release Notes

xojs/eslint-config-xo (eslint-config-xo)

v0.58.1

Compare Source

  • Disable import-x/extensions in base config when TypeScript is active 18d7467

v0.58.0

Compare Source

New features
Improvements
  • Enforce import extensions in TypeScript via n/file-extension-in-import, which auto-fixes and uniquely handles TypeScript's .js-for-.ts import convention 95c243a (#​119)
  • Enable the checkRelationalComparisons option for no-constant-binary-expression cf8ddfd
  • Update to eslint-plugin-unicorn 72
New rules

v0.57.0

Compare Source

  • Added eslint-node-test for linting node:test files. f59405c
  • Generalized the capitalized-comments ignore directives so any tool's *-ignore / *:ignore comment (like svelte-ignore) is recognized without adding each tool individually. 1796590 #​118

v0.56.0

Compare Source

Improvements
  • Disable @typescript-eslint/no-unnecessary-boolean-literal-compare in favor of the type-aware unicorn/no-unnecessary-boolean-comparison, which catches the same cases without requiring strictNullChecks f93a16e (#​117)
  • Allow the @isolated JSDoc tag used by unicorn/isolated-functions 6d78307 (#​116)
  • Update to eslint-plugin-unicorn 70
New rules

v0.55.0

Compare Source

Improvements
  • Allow a few common browser globals (location, history, confirm, screen) to be used without a globalThis. prefix in browser mode 0b4ba8c (#​115)
  • Prefer the autofixable unicorn versions of no-negated-condition and logical-assignment-operators c9bf95b (#​114)
  • Use the type-aware @typescript-eslint/no-unnecessary-template-expression rule in TypeScript c7c6712 (#​113)
  • Update to eslint-plugin-unicorn 69
New rules

v0.54.1

Compare Source

  • Rely on eslint-config-prettier to disable quotes in compat mode b8feb40
  • Disable @html-eslint/require-closing-tags under prettier (#​111) 12fea8a

v0.54.0

Compare Source

Improvements
  • Disable conflicting @html-eslint style rules when prettier is enabled ea75495
  • Disable regexp/prefer-regexp-exec in favor of TS version for TS code 47ad0d9
  • Use unicorn/consistent-boolean-name instead of the naming-convention boolean prefix f933fbf
  • Update to eslint-plugin-unicorn 68

New rules


v0.53.2

Compare Source

  • Disable unicorn/require-array-sort-compare in favor of TS version for TS code (#​105) c67e766

v0.53.1

Compare Source


v0.53.0

Compare Source

Breaking
  • Require TypeScript 6
Prettier integration

A new prettier option lets you combine the rules with Prettier:

export default defineConfig([
	...eslintConfigXo({prettier: true}),
]);
  • true — Runs Prettier as an ESLint rule using XO's Prettier style, and disables the stylistic rules that would conflict with it. Requires prettier to be installed.
  • 'compat' — Only disables the stylistic rules that conflict with Prettier, for when you run Prettier separately (for example, from your editor).

Anything XO does not configure (like printWidth or Prettier plugins) still respects your .prettierrc, but XO's own style settings take precedence. prettier is an optional peer dependency.

CSS linting

.css files are now linted out of the box via @eslint/css: duplicate imports, empty blocks, invalid at-rules, unmatchable selectors, invalid named grid areas, and more.

New rules

v0.52.0

Compare Source

Breaking
New rules
Improvements
  • Add eslint-plugin-jsdoc support ca9780b
  • Add eslint-plugin-regexp support 2eba483
  • Add Markdown support 2bb9c6c
  • Add HTML support 5da39d4
  • Make TypeScript optional for JavaScript-only projects 717184b
  • Use eslint-import-resolver-typescript for import resolution 600b604
  • naming-convention rule: Ignore all exotic/quoted keys bd171ba
  • naming-convention rule: Allow UPPER_CASE for static readonly class properties ce92257
  • naming-convention rule: Allow UPPER_CASE for module-level const variables 0b4bcce
  • Add ?? to no-mixed-operators groups 9117295
  • Require description for file-wide eslint-disable comments 55b6ae1
  • Discourage npm packages with native alternatives 92549e8
  • Remove deprecated rules 7e2747d
  • Disable redundant ESLint rules for TypeScript files f474625
  • capitalized-comments: Don't capitalize commented-out code aedc832

v0.51.0

Compare Source

Breaking

  • The package now exports a function instead of an array. Update your eslint.config.js:
-export default eslintConfigXo;
+export default [...eslintConfigXo()];
  • Removed the ./space and ./browser sub-path exports. Use the space and browser options instead:
export default [...eslintConfigXo({space: true, browser: true})];
  • Requires ESLint 10 and Node.js 20.19+.

Improvements

  • Merged eslint-config-xo-typescript: TypeScript rules are now included. No need to install a separate package.
  • Merged plugin configs from XO: Includes eslint-plugin-unicorn, eslint-plugin-import-x, eslint-plugin-n, eslint-plugin-ava, @eslint-community/eslint-plugin-eslint-comments, and a built-in no-use-extend-native rule. Previously these were only available through the XO CLI.
  • Added semicolon option
  • Added TypeScript declaration file
  • Add no-shadow rule 4cec7d2

v0.50.0

Compare Source

Breaking
New rules
Improvements
  • no-sequences: Add allowInParentheses: false 391d4c8

v0.49.0

Compare Source

Breaking
New rules

v0.48.0

Compare Source


v0.47.0

Compare Source

  • capitalized-comments: Support biome ignore comments (#​90) 518f523
  • Add @stylistic/curly-newline rule e1fe11c
  • Add JSON plugin 6a547b5
  • capitalized-comments: Add v8 to the ignorePattern option (#​88) 4bb2399

v0.46.0

Compare Source

New rules
Breaking
Improvements

v0.45.0

Compare Source

  • Allow class fields with no blank lines between (#​85) 6f2ff13

v0.44.0

Compare Source

Breaking
New rules
Improvements
  • Ban atob and btoa dfa969c
  • Replace deprecated no-new-object rule 7f8f92e
  • no-unused-vars: Allow ignoring variables by prefixing with underscore b31ab8a

v0.43.1

Compare Source

  • Disable logical-assignment-operators rule until we target Node.js 16 ffb7d6e

v0.43.0

Compare Source

v0.42.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 3am on the first day of the month"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Sep 1, 2024

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: generator/generator-opc-generator/package-lock.json
npm warn Unknown env config "store". This will error in a future major version of npm. See `npm help npmrc` for supported config options.
npm warn old lockfile
npm warn old lockfile The package-lock.json file was created with an old version of npm,
npm warn old lockfile so supplemental metadata must be fetched from the registry.
npm warn old lockfile
npm warn old lockfile This is a one-time fix-up, please be patient...
npm warn old lockfile
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @one-platform/generator-opc-generator@0.0.6
npm error Found: eslint@7.32.0
npm error node_modules/eslint
npm error   dev eslint@"7.32.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer eslint@">=10.4" from eslint-config-xo@0.58.1
npm error node_modules/eslint-config-xo
npm error   dev eslint-config-xo@"0.58.1" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-07-20T20_38_27_626Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-07-20T20_38_27_626Z-debug-0.log

@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from e8311cf to 5b077ed Compare March 10, 2025 11:14
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 5b077ed to 56c7039 Compare April 24, 2025 14:01
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.46.0 chore(deps): update dependency eslint-config-xo to v0.47.0 Apr 24, 2025
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 56c7039 to 32222fb Compare July 22, 2025 18:09
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.47.0 chore(deps): update dependency eslint-config-xo to v0.48.0 Jul 22, 2025
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 32222fb to ca6767c Compare August 19, 2025 21:30
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.48.0 chore(deps): update dependency eslint-config-xo to v0.49.0 Aug 19, 2025
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from ca6767c to fc094a0 Compare February 7, 2026 09:12
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.49.0 chore(deps): update dependency eslint-config-xo to v0.50.0 Feb 7, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from fc094a0 to f98a14d Compare March 24, 2026 17:37
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.50.0 chore(deps): update dependency eslint-config-xo to v0.51.0 Mar 24, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from f98a14d to 0cbf28e Compare May 15, 2026 09:09
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.51.0 chore(deps): update dependency eslint-config-xo to v0.52.0 May 15, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 0cbf28e to 195df48 Compare June 17, 2026 00:13
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.52.0 chore(deps): update dependency eslint-config-xo to v0.53.1 Jun 17, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 195df48 to 29e1579 Compare June 17, 2026 17:02
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.53.1 chore(deps): update dependency eslint-config-xo to v0.53.2 Jun 17, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 29e1579 to 4042588 Compare June 22, 2026 19:51
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.53.2 chore(deps): update dependency eslint-config-xo to v0.54.0 Jun 22, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 4042588 to be75f0d Compare June 23, 2026 00:37
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.54.0 chore(deps): update dependency eslint-config-xo to v0.54.1 Jun 23, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from be75f0d to 11802df Compare June 24, 2026 22:40
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.54.1 chore(deps): update dependency eslint-config-xo to v0.55.0 Jun 24, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 11802df to fa595ef Compare July 1, 2026 20:58
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.55.0 chore(deps): update dependency eslint-config-xo to v0.56.0 Jul 1, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from fa595ef to e650e52 Compare July 6, 2026 01:32
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.56.0 chore(deps): update dependency eslint-config-xo to v0.57.0 Jul 6, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from e650e52 to 41f30f7 Compare July 15, 2026 01:01
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.57.0 chore(deps): update dependency eslint-config-xo to v0.58.0 Jul 15, 2026
@renovate
renovate Bot force-pushed the renovate/eslint-config-xo-0.x branch from 41f30f7 to c2834a3 Compare July 15, 2026 22:38
@renovate renovate Bot changed the title chore(deps): update dependency eslint-config-xo to v0.58.0 chore(deps): update dependency eslint-config-xo to v0.58.1 Jul 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants