Skip to content

Commit

Permalink
chore(deps): update devdependency eslint-config-standard to v13
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkdo committed Jul 15, 2019
1 parent 356f184 commit 988048b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/typescript-eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@nuxtjs/eslint-config": "latest",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-node": "^8.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import authentication from 'feathers-authentication'
export default function () {
const app = this

let config = app.get('auth')
const config = app.get('auth')

app.configure(authentication(config))
}
2 changes: 1 addition & 1 deletion examples/with-feathers/src/services/user/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function () {
autoload: true
})

let options = {
const options = {
Model: db,
paginate: {
default: 5,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-feathers/test/app.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('Feathers application tests', function () {
request({
url: 'http://localhost:3030/path/to/nowhere',
headers: {
'Accept': 'text/html'
Accept: 'text/html'
}
}, function (err, res, body) {
assert.strictEqual(res.statusCode, 404)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"consola": "^2.9.0",
"cross-spawn": "^6.0.5",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-multiplexer": "^1.0.4",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.8.0",
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4589,6 +4589,11 @@ eslint-config-standard@^12.0.0:
resolved "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz#638b4c65db0bd5a41319f96bba1f15ddad2107d9"
integrity sha512-COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ==

eslint-config-standard@^13.0.1:
version "13.0.1"
resolved "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-13.0.1.tgz#c9c6ffe0cfb8a51535bc5c7ec9f70eafb8c6b2c0"
integrity sha512-zLKp4QOgq6JFgRm1dDCVv1Iu0P5uZ4v5Wa4DTOkg2RFMxdCX/9Qf7lz9ezRj2dBRa955cWQF/O/LWEiYWAHbTw==

eslint-import-resolver-node@^0.3.2:
version "0.3.2"
resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a"
Expand Down

0 comments on commit 988048b

Please sign in to comment.