Skip to content

Commit

Permalink
lint: apply standard 13 style
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Jan 30, 2021
1 parent e0e48a9 commit 4a9e055
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ jobs:
shell: bash
run: |
# eslint for linting
# - remove on Node.js < 6
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 6 ]]; then
# - remove on Node.js < 8
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 8 ]]; then
node -pe 'Object.keys(require("./package").devDependencies).join("\n")' | \
grep -E '^eslint(-|$)' | \
sort -r | \
Expand Down
4 changes: 2 additions & 2 deletions bin/express-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ function createApplication (name, dir) {
start: 'node ./bin/www'
},
dependencies: {
'debug': '~2.6.9',
'express': '~4.16.4'
debug: '~2.6.9',
express: '~4.16.4'
}
}

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"express": "./bin/express-cli.js"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint": "6.8.0",
"eslint-config-standard": "13.0.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-node": "9.2.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "6.2.3",
"rimraf": "2.6.3",
Expand Down

0 comments on commit 4a9e055

Please sign in to comment.