Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support Eslint 9 #87

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 0 additions & 4 deletions .eslintrc.json

This file was deleted.

10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
- name: Install dependencies
run: pnpm install

# - name: Format ✨
# run: pnpm run test.format
- name: Format ✨
run: pnpm run test.format

- name: Lint ✨
run: pnpm run test.lint

# - name: Tests
# run: |
# pnpm test
- name: Tests
run: |
pnpm test || echo "Tests failed"

# Release:
# needs: [Test]
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ spec/fixtures/atom-community
spec/fixtures/atom-minimap
spec/fixtures/aminya
spec/fixtures/steelbrain

*.tar.gz
*.tgz
3 changes: 3 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
package-lock=false
lockfile=true
public-hoist-pattern[]=*@types/*
public-hoist-pattern[]=axios
public-hoist-pattern[]=*@typescript-eslint*
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Eslint",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/node_modules/eslint/bin/eslint.js",
"args": ["${workspaceFolder}/spec/fixtures/atom-community/atom-ide-hyperclick"],
"outFiles": ["${workspaceFolder}/**/*.js"],
"sourceMaps": true,
"env": {
"NODE_OPTIONS": "--enable-source-maps"
}
}
]
}
2 changes: 2 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const config = require("./index.js")
module.exports = [...config]
69 changes: 38 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,70 +14,77 @@
"*.js"
],
"scripts": {
"build": "tsc",
"build": "tsc --pretty",
"bump": "ncu -u -x coffeescript,execa,read-pkg-up,make-synchronous && pnpm update && pnpm dedupe",
"clean": "shx rm -rf ./spec/fixtures/ ./dist",
"dev": "tsc --pretty --watch",
"format": "prettier --write .",
"lint": "eslint . --ignore-pattern ./spec/fixtures/ --fix",
"lint": "eslint ./ --ignore dist --fix",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "node ./spec/test.cjs",
"test": "tsx --tsconfig ./spec/tsconfig.json ./spec/test.mts",
"test.format": "prettier . --check",
"test.lint": "eslint . --ignore-pattern spec/fixtures/**"
"test.lint": "cross-env NODE_OPTIONS=--enable-source-maps eslint . --ignore-pattern spec/fixtures/**"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-syntax-flow": "^7.24.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@typescript-eslint/eslint-plugin": "7.13.0",
"@typescript-eslint/parser": "7.13.0",
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-syntax-flow": "^7.26.0",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@typescript-eslint/parser": "^8.28.0",
"anymatch": "^3.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.2",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-solid": "^0.14.0",
"eslint-plugin-yaml": "^0.5.0",
"eslint-plugin-optimize-regex": "github:aminya/eslint-plugin-optimize-regex#16f9506ed2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-solid": "^0.14.5",
"eslint-plugin-yaml": "^1.1.2",
"globals": "^16.0.0",
"globify-gitignore": "^1.0.3",
"make-synchronous": "^0.1.1",
"prettier": "3.3.2",
"prettier": "3.5.3",
"read-pkg-up": "^7.0.1",
"semver": "^7.6.2",
"typescript": "^5.4.5"
"semver": "^7.7.1",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/coffeescript": "^2.5.7",
"@types/eslint": "^8.56.10",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/execa": "^2.0.0",
"@types/node": "^20.14.2",
"@types/fs-extra": "~11.0.4",
"@types/node": "^22.13.13",
"@types/read-pkg-up": "^6.0.0",
"@types/semver": "^7.5.8",
"@types/semver": "^7.7.0",
"@types/shelljs": "^0.8.15",
"eslint-config-atomic": "link:",
"execa": "^5.1.1",
"gitly": "^2.5.3",
"npm-check-updates": "16.14.20",
"fs-extra": "^11.3.0",
"gitly": "^3.1.0",
"npm-check-updates": "17.1.16",
"prettier-config-atomic": "^4.0.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4"
"shelljs": "^0.9.2",
"shx": "^0.4.0",
"tsx": "^4.19.3"
},
"peerDependencies": {
"eslint": "^8 || ^7 || ^6"
},
"optionalDependencies": {
"coffeescript": "^1.12.7",
"eslint-plugin-coffee": "^0.1.15",
"eslint-plugin-react-hooks": "^4.6.2"
"eslint-plugin-react-hooks": "^5.2.0"
},
"keywords": [
"eslint",
Expand Down
Loading
Loading