Skip to content

Commit 90c418d

Browse files
committed
1 parent a3cff78 commit 90c418d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ jobs:
125125
shell: bash
126126
run: |
127127
# eslint for linting
128-
# - remove on Node.js < 8
129-
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 8 ]]; then
128+
# - remove on Node.js < 10
129+
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 10 ]]; then
130130
node -pe 'Object.keys(require("./package").devDependencies).join("\n")' | \
131131
grep -E '^eslint(-|$)' | \
132132
sort -r | \

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"cookie-signature": "1.0.6"
1818
},
1919
"devDependencies": {
20-
"eslint": "6.8.0",
20+
"eslint": "7.32.0",
2121
"eslint-config-standard": "14.1.1",
2222
"eslint-plugin-import": "2.25.2",
2323
"eslint-plugin-markdown": "2.2.1",

0 commit comments

Comments
 (0)