From 537e10033e055bc060ecbd57a678e6cfcfffed30 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 19 Feb 2014 09:11:05 +0200 Subject: Switch to using JSCS for the indentation check. --- grunt/.jshintrc | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'grunt') diff --git a/grunt/.jshintrc b/grunt/.jshintrc index 47dc88e0b..15f3862a9 100644 --- a/grunt/.jshintrc +++ b/grunt/.jshintrc @@ -1,15 +1,14 @@ { "camelcase": true, - "curly": true, - "eqeqeq": true, - "immed": true, - "indent": 2, - "newcap": true, - "noarg": true, - "node": true, - "nonbsp": true, - "quotmark": "single", - "strict": true, - "trailing": true, - "undef": true + "curly" : true, + "eqeqeq" : true, + "immed" : true, + "newcap" : true, + "noarg" : true, + "node" : true, + "nonbsp" : true, + "quotmark" : "single", + "strict" : true, + "trailing" : true, + "undef" : true } -- cgit v1.2.3 From d65f749390a32ec8c7abb09199bf31a7cca415ac Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 19 Feb 2014 09:11:25 +0200 Subject: Move the quotes check to JSCS. --- grunt/.jshintrc | 1 - 1 file changed, 1 deletion(-) (limited to 'grunt') diff --git a/grunt/.jshintrc b/grunt/.jshintrc index 15f3862a9..26ebc7e3b 100644 --- a/grunt/.jshintrc +++ b/grunt/.jshintrc @@ -7,7 +7,6 @@ "noarg" : true, "node" : true, "nonbsp" : true, - "quotmark" : "single", "strict" : true, "trailing" : true, "undef" : true -- cgit v1.2.3 From be8f125ce6225222507f0b7329ea88b99207ac21 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 27 Feb 2014 17:38:37 +0200 Subject: Move `camelcase` check to JSCS. --- grunt/.jshintrc | 1 - 1 file changed, 1 deletion(-) (limited to 'grunt') diff --git a/grunt/.jshintrc b/grunt/.jshintrc index 26ebc7e3b..d357212cc 100644 --- a/grunt/.jshintrc +++ b/grunt/.jshintrc @@ -1,5 +1,4 @@ { - "camelcase": true, "curly" : true, "eqeqeq" : true, "immed" : true, -- cgit v1.2.3 From 25450730247f4e77f30660f52762fa83e44d6fa1 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 27 Feb 2014 17:38:46 +0200 Subject: Move `trailing` check to JSCS. --- grunt/.jshintrc | 1 - 1 file changed, 1 deletion(-) (limited to 'grunt') diff --git a/grunt/.jshintrc b/grunt/.jshintrc index d357212cc..f79ed0cac 100644 --- a/grunt/.jshintrc +++ b/grunt/.jshintrc @@ -7,6 +7,5 @@ "node" : true, "nonbsp" : true, "strict" : true, - "trailing" : true, "undef" : true } -- cgit v1.2.3 From c586a56d573ed4498b9ba2a8742653b23d92de2b Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 28 Feb 2014 14:21:21 +0200 Subject: Move `immed` to JSCS. --- grunt/.jshintrc | 1 - 1 file changed, 1 deletion(-) (limited to 'grunt') diff --git a/grunt/.jshintrc b/grunt/.jshintrc index f79ed0cac..c812e59d8 100644 --- a/grunt/.jshintrc +++ b/grunt/.jshintrc @@ -1,7 +1,6 @@ { "curly" : true, "eqeqeq" : true, - "immed" : true, "newcap" : true, "noarg" : true, "node" : true, -- cgit v1.2.3 From 22d004e332700e4867691896b9f6db954c2d7c12 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 28 Feb 2014 19:07:14 +0200 Subject: Re-indent grunt/.jshintrc. --- grunt/.jshintrc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'grunt') diff --git a/grunt/.jshintrc b/grunt/.jshintrc index c812e59d8..8d402b53c 100644 --- a/grunt/.jshintrc +++ b/grunt/.jshintrc @@ -1,10 +1,10 @@ { - "curly" : true, - "eqeqeq" : true, - "newcap" : true, - "noarg" : true, - "node" : true, - "nonbsp" : true, - "strict" : true, - "undef" : true + "curly" : true, + "eqeqeq": true, + "newcap": true, + "noarg" : true, + "node" : true, + "nonbsp": true, + "strict": true, + "undef" : true } -- cgit v1.2.3