From a4d58e7101cb7ccded2d8cd233d051b48a45ee5c Mon Sep 17 00:00:00 2001 From: Michael Krotscheck Date: Wed, 24 Feb 2016 05:20:46 -0800 Subject: [PATCH] Upgraded eslint-config-openstack to 1.2.4 This patch upgrades eslint to version 1.2.4, incorporating new rule changes on no-undefined, brace-style, quote-props, space-in-parens, no-use-before-define, no-uneeded-ternary, and quote. For now, rules that have been activated that cause checks to fail have been switched to warning-only. Additionally, rules that have been entirely disabled have been removed. Change-Id: Ifba7a19da669288cb19cfc8055bdfa7b94f00292 --- .eslintrc | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 3057c3231ac..9c964482ab3 100644 --- a/.eslintrc +++ b/.eslintrc @@ -33,6 +33,10 @@ rules: no-extra-parens: 1 callback-return: 1 block-scoped-var: 1 + quote-props: 1 + space-in-parens: 1 + no-use-before-define: 1 + no-unneeded-ternary: 1 ############################################################################# # Angular Plugin Customization diff --git a/package.json b/package.json index 2b4fbbf8163..a1407cba0e9 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "license": "Apache 2.0", "devDependencies": { "eslint": "1.10.3", - "eslint-config-openstack": "1.2.3", + "eslint-config-openstack": "1.2.4", "eslint-plugin-angular": "0.15.0", "jasmine-core": "2.2.0", "karma": "0.12.31",