1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-17 01:15:52 +02:00

build(deps): update latest

BREAKING CHANGE: peerDependencies: `eslint-plugin-import@^2.26.0`, `eslint-plugin-unicorn@^42.0.0`
This commit is contained in:
Divlo 2022-04-06 19:14:13 +02:00
parent 387509a30f
commit 61679195ee
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
6 changed files with 864 additions and 890 deletions

View File

@ -10,10 +10,10 @@ jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2.4.0'
- uses: 'actions/checkout@v3.0.0'
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.5.1'
uses: 'actions/setup-node@v3.1.0'
with:
node-version: 'lts/*'
cache: 'npm'

View File

@ -8,13 +8,13 @@ jobs:
release:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2.4.0'
- uses: 'actions/checkout@v3.0.0'
with:
fetch-depth: 0
persist-credentials: false
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.5.1'
uses: 'actions/setup-node@v3.1.0'
with:
node-version: 'lts/*'
cache: 'npm'

View File

@ -10,10 +10,10 @@ jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2.4.0'
- uses: 'actions/checkout@v3.0.0'
- name: 'Use Node.js'
uses: 'actions/setup-node@v2.5.1'
uses: 'actions/setup-node@v3.1.0'
with:
node-version: 'lts/*'
cache: 'npm'

View File

@ -41,9 +41,9 @@ Here is an example, but use it only for reference, because your decisions regard
```sh
npm install --save-dev \
eslint@^8.9.0 \
eslint-plugin-import@^2.25.4 \
eslint-plugin-import@^2.26.0 \
eslint-plugin-promise@^6.0.0 \
eslint-plugin-unicorn@^41.0.0 \
eslint-plugin-unicorn@^42.0.0 \
eslint-config-conventions@latest
```
@ -62,9 +62,9 @@ If you want to use **TypeScript**, you also need to install:
```sh
npm install --save-dev \
typescript@^4.4.0 \
@typescript-eslint/eslint-plugin@^5.12.0 \
@typescript-eslint/parser@^5.12.0
typescript@^4.6.0 \
@typescript-eslint/eslint-plugin@^5.18.0 \
@typescript-eslint/parser@^5.18.0
```
Dependencies are:

1712
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -42,29 +42,29 @@
},
"peerDependencies": {
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^41.0.0"
"eslint-plugin-unicorn": "^42.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/eslint": "8.4.1",
"@types/tap": "15.0.6",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"editorconfig-checker": "4.0.2",
"eslint": "8.11.0",
"eslint-plugin-import": "2.25.4",
"eslint": "8.12.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "41.0.1",
"eslint-plugin-unicorn": "42.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"markdownlint-cli": "0.31.1",
"pinst": "3.0.0",
"prettier": "2.6.0",
"prettier": "2.6.2",
"semantic-release": "19.0.2",
"tap": "16.0.0",
"typescript": "4.6.2"
"tap": "16.0.1",
"typescript": "4.6.3"
}
}