mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-08 19:11:31 +01:00
build(deps): update latest
BREAKING CHANGE: peerDependencies: `eslint@^8.51.0` `eslint-plugin-import@^2.28.1` `eslint-plugin-promise@^6.1.1` `eslint-plugin-unicorn@^48.0.1` BREAKING CHANGE: Bump minimum supported Node.js >= 18.0.0
This commit is contained in:
parent
d149fdd6ab
commit
d8b3ef6646
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@ -10,10 +10,10 @@ jobs:
|
||||
lint:
|
||||
runs-on: 'ubuntu-latest'
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.5.3'
|
||||
- uses: 'actions/checkout@v3.6.0'
|
||||
|
||||
- name: 'Setup Node.js'
|
||||
uses: 'actions/setup-node@v3.6.0'
|
||||
uses: 'actions/setup-node@v3.8.1'
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
cache: 'npm'
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -13,13 +13,13 @@ jobs:
|
||||
pull-requests: 'write'
|
||||
id-token: 'write'
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.5.3'
|
||||
- uses: 'actions/checkout@v3.6.0'
|
||||
with:
|
||||
fetch-depth: 0
|
||||
persist-credentials: false
|
||||
|
||||
- name: 'Setup Node.js'
|
||||
uses: 'actions/setup-node@v3.6.0'
|
||||
uses: 'actions/setup-node@v3.8.1'
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
cache: 'npm'
|
||||
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -10,10 +10,10 @@ jobs:
|
||||
test:
|
||||
runs-on: 'ubuntu-latest'
|
||||
steps:
|
||||
- uses: 'actions/checkout@v3.5.3'
|
||||
- uses: 'actions/checkout@v3.6.0'
|
||||
|
||||
- name: 'Setup Node.js'
|
||||
uses: 'actions/setup-node@v3.6.0'
|
||||
uses: 'actions/setup-node@v3.8.1'
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
cache: 'npm'
|
||||
|
14
README.md
14
README.md
@ -31,16 +31,16 @@ More information about **formatting rules** vs **code-quality rules** can be fou
|
||||
|
||||
### Prerequisites
|
||||
|
||||
- [Node.js](https://nodejs.org/) >= 16.0.0
|
||||
[Node.js](https://nodejs.org/) >= 18.0.0
|
||||
|
||||
### Installation
|
||||
|
||||
```sh
|
||||
npm install --save-dev \
|
||||
eslint@^8.44.0 \
|
||||
eslint-plugin-import@^2.27.5 \
|
||||
eslint@^8.51.0 \
|
||||
eslint-plugin-import@^2.28.1 \
|
||||
eslint-plugin-promise@^6.1.1 \
|
||||
eslint-plugin-unicorn@^48.0.0 \
|
||||
eslint-plugin-unicorn@^48.0.1 \
|
||||
eslint-config-conventions@latest
|
||||
```
|
||||
|
||||
@ -57,9 +57,9 @@ If you want to use **TypeScript**, you also need to install:
|
||||
|
||||
```sh
|
||||
npm install --save-dev \
|
||||
typescript@^5.1.6 \
|
||||
@typescript-eslint/eslint-plugin@^6.1.0 \
|
||||
@typescript-eslint/parser@^6.1.0
|
||||
typescript@^5.2.2 \
|
||||
@typescript-eslint/eslint-plugin@^6.8.0 \
|
||||
@typescript-eslint/parser@^6.8.0
|
||||
```
|
||||
|
||||
Dependencies are:
|
||||
|
3427
package-lock.json
generated
3427
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
38
package.json
38
package.json
@ -32,7 +32,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16.0.0",
|
||||
"node": ">=18.0.0",
|
||||
"npm": ">=9.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
@ -49,31 +49,31 @@
|
||||
"postpublish": "pinst --enable"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"eslint": "^8.44.0",
|
||||
"eslint-plugin-import": "^2.27.5",
|
||||
"eslint": "^8.51.0",
|
||||
"eslint-plugin-import": "^2.28.1",
|
||||
"eslint-plugin-promise": "^6.1.1",
|
||||
"eslint-plugin-unicorn": "^48.0.0"
|
||||
"eslint-plugin-unicorn": "^48.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "17.6.6",
|
||||
"@commitlint/config-conventional": "17.6.6",
|
||||
"@tsconfig/strictest": "2.0.1",
|
||||
"@types/eslint": "8.44.0",
|
||||
"@types/node": "20.4.2",
|
||||
"@typescript-eslint/eslint-plugin": "6.1.0",
|
||||
"@typescript-eslint/parser": "6.1.0",
|
||||
"@commitlint/cli": "17.8.0",
|
||||
"@commitlint/config-conventional": "17.8.0",
|
||||
"@tsconfig/strictest": "2.0.2",
|
||||
"@types/eslint": "8.44.5",
|
||||
"@types/node": "20.8.7",
|
||||
"@typescript-eslint/eslint-plugin": "6.8.0",
|
||||
"@typescript-eslint/parser": "6.8.0",
|
||||
"editorconfig-checker": "5.1.1",
|
||||
"eslint": "8.45.0",
|
||||
"eslint-plugin-import": "2.27.5",
|
||||
"eslint": "8.51.0",
|
||||
"eslint-plugin-import": "2.28.1",
|
||||
"eslint-plugin-promise": "6.1.1",
|
||||
"eslint-plugin-unicorn": "48.0.0",
|
||||
"eslint-plugin-unicorn": "48.0.1",
|
||||
"husky": "8.0.3",
|
||||
"lint-staged": "13.2.3",
|
||||
"markdownlint-cli2": "0.8.1",
|
||||
"lint-staged": "15.0.1",
|
||||
"markdownlint-cli2": "0.10.0",
|
||||
"markdownlint-rule-relative-links": "2.1.0",
|
||||
"pinst": "3.0.0",
|
||||
"prettier": "3.0.0",
|
||||
"semantic-release": "21.0.7",
|
||||
"typescript": "5.1.6"
|
||||
"prettier": "3.0.3",
|
||||
"semantic-release": "22.0.5",
|
||||
"typescript": "5.2.2"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user