From d14d47cd1d0896758c6ba7ca559bbf84f8bb1650 Mon Sep 17 00:00:00 2001 From: Felix Furtmayr Date: Tue, 12 Sep 2017 13:04:41 +0200 Subject: [PATCH 1/3] add "globalstrict" --- jshint.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jshint.md b/jshint.md index dcf9f6190..c95943313 100644 --- a/jshint.md +++ b/jshint.md @@ -39,6 +39,9 @@ Enable these options to *not* throw errors in these conditions. /* jshint sub: true */ process.env['name_here'] + + /* jshint globalstrict: true*/ + "use strict"; ### [Enforcing](http://www.jshint.com/docs/options/#enforcing-options) From f6d4b9025150c29d9a52f8d6b6f3e63da0df5ffe Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Tue, 12 Sep 2017 20:31:29 +0800 Subject: [PATCH 2/3] Update jshint.md --- jshint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jshint.md b/jshint.md index c95943313..1067df9b6 100644 --- a/jshint.md +++ b/jshint.md @@ -40,7 +40,7 @@ Enable these options to *not* throw errors in these conditions. /* jshint sub: true */ process.env['name_here'] - /* jshint globalstrict: true*/ + /* jshint globalstrict: true */ "use strict"; ### [Enforcing](http://www.jshint.com/docs/options/#enforcing-options) From 6671d880868f57ab177c2889ac73b25112c0dd47 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Tue, 12 Sep 2017 20:31:44 +0800 Subject: [PATCH 3/3] Update jshint.md --- jshint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jshint.md b/jshint.md index 1067df9b6..e3cff8699 100644 --- a/jshint.md +++ b/jshint.md @@ -40,7 +40,7 @@ Enable these options to *not* throw errors in these conditions. /* jshint sub: true */ process.env['name_here'] - /* jshint globalstrict: true */ + /* jshint globalstrict: true */ "use strict"; ### [Enforcing](http://www.jshint.com/docs/options/#enforcing-options)