mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-08 19:11:31 +01:00
Théo LUDWIG
b4de437548
We'll consider using eslint-plugin-import-x in the next major version, https://github.com/theoludwig/eslint-config-conventions/issues/3 We remove this plugin to avoid issues like this: https://github.com/pnpm/pnpm/issues/4619 (should be resolved when ESLint v9 is fully supported) And because of the lack of features, that eslint-plugin-import-x implement: (https://github.com/un-ts/eslint-plugin-import-x/issues/24#issuecomment-1991605123)
77 lines
2.2 KiB
JSON
77 lines
2.2 KiB
JSON
{
|
|
"name": "eslint-config-conventions",
|
|
"version": "0.0.0-development",
|
|
"public": true,
|
|
"description": "ESLint shareable config to enforce strict conventions and good code quality.",
|
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/theoludwig/eslint-config-conventions/issues"
|
|
},
|
|
"homepage": "https://github.com/theoludwig/eslint-config-conventions#readme",
|
|
"keywords": [
|
|
"eslintconfig",
|
|
"eslint",
|
|
"quality",
|
|
"strict linter",
|
|
"validate",
|
|
"code quality",
|
|
"conventions"
|
|
],
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
".eslintrc.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --config eslintrc.json",
|
|
"lint:prettier": "prettier . --check",
|
|
"lint:staged": "lint-staged",
|
|
"test": "node --test",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-unicorn": "^51.0.1 || ^52.0.0 || ^53.0.0 || ^54.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.2.2",
|
|
"@commitlint/config-conventional": "19.2.2",
|
|
"@tsconfig/strictest": "2.0.5",
|
|
"@types/eslint": "8.56.10",
|
|
"@types/node": "20.14.10",
|
|
"@typescript-eslint/eslint-plugin": "7.16.0",
|
|
"@typescript-eslint/parser": "7.16.0",
|
|
"editorconfig-checker": "5.1.8",
|
|
"eslint": "8.57.0",
|
|
"eslint-plugin-promise": "6.4.0",
|
|
"eslint-plugin-unicorn": "54.0.0",
|
|
"husky": "9.0.11",
|
|
"lint-staged": "15.2.7",
|
|
"markdownlint-cli2": "0.13.0",
|
|
"markdownlint-rule-relative-links": "3.0.0",
|
|
"pinst": "3.0.0",
|
|
"prettier": "3.3.2",
|
|
"semantic-release": "23.1.1",
|
|
"typescript": "5.5.3"
|
|
}
|
|
}
|