Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
package-lock = false
install-links = false
# TODO: We need to keep `legacy-peer-deps` until all sub-dependencies of `eslint-config-eslint` support ESLint v10.
# Removing it too early could cause `npm install` to fail.
legacy-peer-deps = true
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@
],
"license": "Apache-2.0",
"dependencies": {
"@eslint/core": "^0.17.0",
"@eslint/core": "^1.0.0",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same question as eslint/json#190 (comment). We can clarify there, just wanted to leave a note here as well so that we don't merge until this is clarified.

"@eslint/css-tree": "^3.6.8",
"@eslint/plugin-kit": "^0.5.0"
},
"devDependencies": {
"@eslint/json": "^0.14.0",
"c8": "^10.1.3",
"dedent": "^1.5.3",
"eslint": "^9.36.0",
"eslint": ">=10.0.0-alpha.0 <10.0.0 || ^10.0.0",
"eslint-config-eslint": "^13.0.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
"globals": "^16.5.0",
Expand Down
5 changes: 2 additions & 3 deletions tests/types/types.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import css, { CSSSourceCode } from "@eslint/css";
import type { ESLint } from "eslint";
import type { SourceLocation, SourceRange } from "@eslint/core";
import type { Plugin, SourceLocation, SourceRange } from "@eslint/core";
import type {
AnPlusB,
AtrulePlain,
Expand Down Expand Up @@ -55,7 +54,7 @@ import type {
} from "@eslint/css-tree";
import type { CSSRuleDefinition, CSSRuleVisitor } from "@eslint/css/types";

css satisfies ESLint.Plugin;
css satisfies Plugin;
css.meta.name satisfies string;
css.meta.version satisfies string;

Expand Down