Skip to content

Commit eb6dd96

Browse files
committedSep 1, 2022
build: eslint@8.23.0
1 parent fe2f823 commit eb6dd96

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ jobs:
145145
shell: bash
146146
run: |
147147
# eslint for linting
148-
# - remove on Node.js < 10
149-
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 10 ]]; then
148+
# - remove on Node.js < 12
149+
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 12 ]]; then
150150
node -pe 'Object.keys(require("./package").devDependencies).join("\n")' | \
151151
grep -E '^eslint(-|$)' | \
152152
sort -r | \

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
"unpipe": "1.0.0"
2424
},
2525
"devDependencies": {
26-
"eslint": "7.32.0",
26+
"eslint": "8.23.0",
2727
"eslint-config-standard": "14.1.1",
2828
"eslint-plugin-import": "2.25.4",
2929
"eslint-plugin-markdown": "2.2.1",
3030
"eslint-plugin-node": "11.1.0",
31-
"eslint-plugin-promise": "5.2.0",
31+
"eslint-plugin-promise": "6.0.1",
3232
"eslint-plugin-standard": "4.1.0",
3333
"methods": "1.1.2",
3434
"mocha": "10.0.0",

0 commit comments

Comments
 (0)
Please sign in to comment.