Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"homepage": "https://github.com/centrapay/swift-parser",
"repository": "https://github.com/centrapay/swift-parser.git",
"devDependencies": {
"eslint": "^8.35.0",
"eslint": "^10.0.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

ESLint config format incompatible with ESLint 10

High Severity

ESLint 10.0.0 removed all support for the legacy eslintrc configuration format (feat!: remove eslintrc support). The project's entire linting configuration lives in .eslintrc.yml, which ESLint 10 will completely ignore. As a result, running eslint . will silently skip all custom rules (complexity, indent, quotes, semi, no-only-tests, etc.), making linting effectively a no-op while still reporting success. This means lint CI checks would pass even with rule violations.

Fix in Cursor Fix in Web

"eslint-plugin-no-only-tests": "^3.1.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2"
Expand Down
Loading
Loading