Use eslint to lint the eslint-config package itself

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-21 16:31:51 +04:00
parent bcc9de804e
commit 469e1431a3
12 changed files with 81 additions and 180 deletions

View File

@@ -3,22 +3,24 @@
"version": "1.0.0",
"private": true,
"description": "Shared ESLint configuration for Probo monorepo",
"main": "eslint.config.mjs",
"main": "./src/index.ts",
"type": "module",
"scripts": {},
"scripts": {
"lint": "eslint src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.7.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"typescript-eslint": "^8.53.1"
},
"devDependencies": {
"eslint": "^9.39.2",
"typescript": "^5.8.3"
}
}