1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-09 00:25:53 +02:00

build(deps): update latest

BREAKING CHANGE: peerDependencies: `eslint@^8.44.0`
This commit is contained in:
Théo LUDWIG 2023-07-02 15:54:50 +02:00
parent 528a31316d
commit e071e917f6
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
8 changed files with 789 additions and 4412 deletions

View File

@ -4,10 +4,10 @@
"env": {
"browser": true,
"node": true,
"es2022": true
"es2024": true
},
"parserOptions": {
"ecmaVersion": 2022,
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true

View File

@ -10,7 +10,7 @@ jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.5.2'
- uses: 'actions/checkout@v3.5.3'
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3.6.0'

View File

@ -13,7 +13,7 @@ jobs:
pull-requests: 'write'
id-token: 'write'
steps:
- uses: 'actions/checkout@v3.5.2'
- uses: 'actions/checkout@v3.5.3'
with:
fetch-depth: 0
persist-credentials: false

View File

@ -10,7 +10,7 @@ jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.5.2'
- uses: 'actions/checkout@v3.5.3'
- name: 'Setup Node.js'
uses: 'actions/setup-node@v3.6.0'

View File

@ -40,7 +40,7 @@ Here is an example, but use it only for reference, because your decisions regard
```sh
npm install --save-dev \
eslint@^8.33.0 \
eslint@^8.44.0 \
eslint-plugin-import@^2.27.5 \
eslint-plugin-promise@^6.1.1 \
eslint-plugin-unicorn@^47.0.0 \

5155
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -39,42 +39,41 @@
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint \".\" -c \"eslintrc.json\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"lint:eslint": "eslint . -c eslintrc.json",
"lint:prettier": "prettier . --check --ignore-path .gitignore",
"lint:staged": "lint-staged",
"test": "tap",
"test": "node --test test/",
"release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"peerDependencies": {
"eslint": "^8.33.0",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^47.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@tsconfig/strictest": "2.0.1",
"@types/eslint": "8.37.0",
"@types/tap": "15.0.8",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"editorconfig-checker": "5.0.1",
"eslint": "8.40.0",
"@types/eslint": "8.40.2",
"@types/node": "20.3.3",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"editorconfig-checker": "5.1.1",
"eslint": "8.44.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "47.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"markdownlint-cli2": "0.7.1",
"markdownlint-rule-relative-links": "1.1.2",
"lint-staged": "13.2.3",
"markdownlint-cli2": "0.8.1",
"markdownlint-rule-relative-links": "2.1.0",
"pinst": "3.0.0",
"prettier": "2.8.8",
"semantic-release": "21.0.2",
"tap": "16.3.4",
"semantic-release": "21.0.6",
"typescript": "5.0.4"
}
}

View File

@ -1,6 +1,7 @@
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
"resolveJsonModule": true,
"target": "ESNext",
"module": "commonjs",
"lib": ["ESNext"],