From 988048bc7ae37ec9ed88f7704fe40611e8ace393 Mon Sep 17 00:00:00 2001 From: Clark Du Date: Mon, 15 Jul 2019 19:30:14 +0100 Subject: [PATCH] chore(deps): update devdependency eslint-config-standard to v13 --- examples/typescript-eslint/package.json | 2 +- examples/with-feathers/src/services/authentication/index.js | 2 +- examples/with-feathers/src/services/user/index.js | 2 +- examples/with-feathers/test/app.test.js | 2 +- package.json | 2 +- yarn.lock | 5 +++++ 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/examples/typescript-eslint/package.json b/examples/typescript-eslint/package.json index 3214e9c4fc..0e992cf8fb 100644 --- a/examples/typescript-eslint/package.json +++ b/examples/typescript-eslint/package.json @@ -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", diff --git a/examples/with-feathers/src/services/authentication/index.js b/examples/with-feathers/src/services/authentication/index.js index 453db60b8b..bba5d4f859 100644 --- a/examples/with-feathers/src/services/authentication/index.js +++ b/examples/with-feathers/src/services/authentication/index.js @@ -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)) } diff --git a/examples/with-feathers/src/services/user/index.js b/examples/with-feathers/src/services/user/index.js index f84ec580a8..1367c59a34 100644 --- a/examples/with-feathers/src/services/user/index.js +++ b/examples/with-feathers/src/services/user/index.js @@ -11,7 +11,7 @@ export default function () { autoload: true }) - let options = { + const options = { Model: db, paginate: { default: 5, diff --git a/examples/with-feathers/test/app.test.js b/examples/with-feathers/test/app.test.js index b12107e98b..56bbcdfbbf 100644 --- a/examples/with-feathers/test/app.test.js +++ b/examples/with-feathers/test/app.test.js @@ -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) diff --git a/package.json b/package.json index eda4059913..332845a20d 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/yarn.lock b/yarn.lock index 040b115b5e..39febfafb7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -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"