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-unicorn@^46.0.0`
This commit is contained in:
Divlo 2023-04-02 20:53:26 +02:00
parent 1779517f5c
commit 08602b1c53
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
6 changed files with 2036 additions and 1390 deletions

View File

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

View File

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

View File

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

View File

@ -43,7 +43,7 @@ npm install --save-dev \
eslint@^8.33.0 \
eslint-plugin-import@^2.27.5 \
eslint-plugin-promise@^6.1.1 \
eslint-plugin-unicorn@^45.0.2 \
eslint-plugin-unicorn@^46.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.8.2 \
@typescript-eslint/eslint-plugin@^5.36.1 \
@typescript-eslint/parser@^5.36.1
typescript@^5.0.3 \
@typescript-eslint/eslint-plugin@^5.57.0 \
@typescript-eslint/parser@^5.57.0
```
Dependencies are:

3380
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -48,29 +48,29 @@
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^45.0.2"
"eslint-plugin-unicorn": "^46.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@tsconfig/strictest": "1.0.2",
"@types/eslint": "8.21.0",
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@tsconfig/strictest": "2.0.0",
"@types/eslint": "8.37.0",
"@types/tap": "15.0.8",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"editorconfig-checker": "5.0.1",
"eslint": "8.33.0",
"eslint": "8.37.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-unicorn": "46.0.0",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"lint-staged": "13.2.0",
"markdownlint-cli2": "0.6.0",
"markdownlint-rule-relative-links": "1.1.1",
"pinst": "3.0.0",
"prettier": "2.8.3",
"semantic-release": "20.1.0",
"prettier": "2.8.7",
"semantic-release": "21.0.1",
"tap": "16.3.4",
"typescript": "4.9.5"
"typescript": "5.0.3"
}
}