Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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.

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]
61 changes: 32 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
"*.js"
],
"scripts": {
"build": "tsc",
"dev": "tsc --pretty --watch",
"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",
"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",
Expand All @@ -27,57 +28,59 @@
},
"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.0.3",
"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",
"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/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",
"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"
},
"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