Skip to content

Commit f243013

Browse files
committed
feat: support eslint-plugin-unicorn@^50.0.0
1 parent d3d71f9 commit f243013

File tree

7 files changed

+925
-742
lines changed

7 files changed

+925
-742
lines changed

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
lint:
1111
runs-on: "ubuntu-latest"
1212
steps:
13-
- uses: "actions/checkout@v3.6.0"
13+
- uses: "actions/checkout@v4.1.1"
1414

1515
- name: "Setup Node.js"
16-
uses: "actions/setup-node@v3.8.1"
16+
uses: "actions/setup-node@v4.0.1"
1717
with:
1818
node-version: "lts/*"
1919
cache: "npm"

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
pull-requests: "write"
1414
id-token: "write"
1515
steps:
16-
- uses: "actions/checkout@v3.6.0"
16+
- uses: "actions/checkout@v4.1.1"
1717
with:
1818
fetch-depth: 0
1919
persist-credentials: false
2020

2121
- name: "Setup Node.js"
22-
uses: "actions/setup-node@v3.8.1"
22+
uses: "actions/setup-node@v4.0.1"
2323
with:
2424
node-version: "lts/*"
2525
cache: "npm"

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test:
1111
runs-on: "ubuntu-latest"
1212
steps:
13-
- uses: "actions/checkout@v3.6.0"
13+
- uses: "actions/checkout@v4.1.1"
1414

1515
- name: "Setup Node.js"
16-
uses: "actions/setup-node@v3.8.1"
16+
uses: "actions/setup-node@v4.0.1"
1717
with:
1818
node-version: "lts/*"
1919
cache: "npm"

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"prettier.configPath": ".prettierrc.json",
66
"editor.formatOnSave": true,
77
"editor.codeActionsOnSave": {
8-
"source.fixAll": true
8+
"source.fixAll": "explicit"
99
}
1010
}

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
</p>
88

99
<p align="center">
10-
<a href="./CONTRIBUTING.md"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat" /></a>
10+
<a href="./CONTRIBUTING.md"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat" alt="Contributing" /></a>
1111
<a href="./LICENSE"><img src="https://img.shields.io/badge/licence-MIT-blue.svg" alt="Licence MIT"/></a>
1212
<a href="./CODE_OF_CONDUCT.md"><img src="https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg" alt="Contributor Covenant" /></a>
1313
<br />
14-
<a href="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/lint.yml"><img src="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/lint.yml/badge.svg?branch=develop" /></a>
15-
<a href="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/test.yml"><img src="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/test.yml/badge.svg?branch=develop" /></a>
14+
<a href="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/lint.yml"><img src="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/lint.yml/badge.svg?branch=develop" alt="lint action" /></a>
15+
<a href="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/test.yml"><img src="https://github.com/theoludwig/eslint-config-conventions/actions/workflows/test.yml/badge.svg?branch=develop" alt="test action" /></a>
1616
<br />
1717
<a href="https://conventionalcommits.org"><img src="https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg" alt="Conventional Commits" /></a>
1818
<a href="https://github.com/semantic-release/semantic-release"><img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="semantic-release" /></a>
@@ -40,7 +40,7 @@ npm install --save-dev \
4040
eslint@^8.53.0 \
4141
eslint-plugin-import@^2.29.0 \
4242
eslint-plugin-promise@^6.1.1 \
43-
eslint-plugin-unicorn@^49.0.1 \
43+
eslint-plugin-unicorn@^50.0.0 \
4444
eslint-config-conventions@latest
4545
```
4646

0 commit comments

Comments
 (0)