summaryrefslogtreecommitdiff
path: root/.eslintrc
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-07-20 19:36:59 -0400
committerTim Graham <timograham@gmail.com>2015-07-22 17:09:53 -0400
commit77a112cb88eceade0c52151f55ba8f03a720dc41 (patch)
treea08546f4467cc870de95e15913e9f8b4ada75545 /.eslintrc
parentfbb4f0797cc44fe2dedda38d1c681fe09473859e (diff)
downloaddjango-77a112cb88eceade0c52151f55ba8f03a720dc41.tar.gz
Fixed JavaScript "no-eval" violation.
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc b/.eslintrc
index 37a5676ddb..ec705d2257 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -8,7 +8,7 @@
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"new-cap": [0, {"newIsCap": true, "capIsNew": true}],
"no-alert": [0],
- "no-eval": [1],
+ "no-eval": [2],
"no-extend-native": [2, {"exceptions": ["Date", "String"]}],
"no-multi-spaces": [2],
"no-octal-escape": [2],