From eea84149b22ed25fa530bbb4159683f802c4dee1 Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Wed, 12 Jul 2017 13:27:50 +0500 Subject: Do not require Dot Notation --- web/.jscsrc | 3 ++- web/.jshintrc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/web/.jscsrc b/web/.jscsrc index 70c9dc48..546e6a58 100644 --- a/web/.jscsrc +++ b/web/.jscsrc @@ -1,5 +1,6 @@ { "preset": "crockford", "maxErrors": 100, - "excludeFiles": ["simple/app.js"] + "excludeFiles": ["simple/app.js"], + "requireDotNotation": false } diff --git a/web/.jshintrc b/web/.jshintrc index b0c5d10e..cc0cdd4c 100644 --- a/web/.jshintrc +++ b/web/.jshintrc @@ -55,7 +55,7 @@ "proto" : false, // true: Tolerate using the `__proto__` property "scripturl" : false, // true: Tolerate script-targeted URLs "shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` - "sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation + "sub" : true, // true: Tolerate using `[]` notation when it can still be expressed in dot notation "supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;` "validthis" : false, // true: Tolerate using this in a non-constructor function -- cgit v1.2.3