summaryrefslogtreecommitdiff
path: root/.eslintrc
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-07-11 00:57:07 +0000
committerGerrit Code Review <review@openstack.org>2015-07-11 00:57:07 +0000
commit1246a3605d3ebd23f157bc9a2a5e3df98dd5a03b (patch)
tree5aa81cd6d6b2e5b6081e972327741edcca098939 /.eslintrc
parent82941cc6ccd6db87ba37ffe8f29cde206fd71980 (diff)
parentb8c7846c3d819999228c820b0c115f670243f0d2 (diff)
downloadhorizon-1246a3605d3ebd23f157bc9a2a5e3df98dd5a03b.tar.gz
Merge "Add selective ESLint rule activation for Horizon Legacy JS"
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc6
1 files changed, 1 insertions, 5 deletions
diff --git a/.eslintrc b/.eslintrc
index a99ac59eb..cb91ac15c 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -4,10 +4,6 @@
# By default, ESLint uses Espree as its parser.
parser: espree
-# Enable eslint-plugin-angular
-plugins:
- - angular
-
# Set up globals
globals:
angular: false
@@ -794,7 +790,7 @@ rules:
# specify the maximum length of a line in your program
# http://eslint.org/docs/rules/max-len
max-len:
- - 2 # TODO(krotscheck): Activate & Fix
+ - 2
- 100
# Limits the number of parameters that can be used in function declaration.