From ec11c89a7440f257de4a4f64bf4a6e449e58e56f Mon Sep 17 00:00:00 2001 From: Machiste Quintana Date: Tue, 7 Apr 2015 19:24:29 -0400 Subject: [PATCH] Revert :shirt: for spec fixtures --- spec/fixtures/coffee.coffee | 3 +-- spec/fixtures/sample-with-tabs-and-leading-comment.coffee | 6 ++---- spec/fixtures/sample-with-tabs.coffee | 2 -- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/spec/fixtures/coffee.coffee b/spec/fixtures/coffee.coffee index d68b84267..b8367ca59 100644 --- a/spec/fixtures/coffee.coffee +++ b/spec/fixtures/coffee.coffee @@ -1,4 +1,4 @@ -class Quicksort +class quicksort sort: (items) -> return items if items.length <= 1 @@ -13,7 +13,6 @@ class Quicksort if current < pivot left.push(current) else - # coffeelint: disable=no_trailing_semicolons right.push(current); sort(left).concat(pivot).concat(sort(right)) diff --git a/spec/fixtures/sample-with-tabs-and-leading-comment.coffee b/spec/fixtures/sample-with-tabs-and-leading-comment.coffee index 08e81aa68..0f81f6fe8 100644 --- a/spec/fixtures/sample-with-tabs-and-leading-comment.coffee +++ b/spec/fixtures/sample-with-tabs-and-leading-comment.coffee @@ -1,6 +1,4 @@ # This is a comment - # coffeelint: disable=no_tabs - # coffeelint: disable=indentation if this.studyingEconomics - buy() while supply > demand - sell() until supply > demand + buy() while supply > demand + sell() until supply > demand diff --git a/spec/fixtures/sample-with-tabs.coffee b/spec/fixtures/sample-with-tabs.coffee index 5e7595a7d..1b937ea33 100644 --- a/spec/fixtures/sample-with-tabs.coffee +++ b/spec/fixtures/sample-with-tabs.coffee @@ -1,5 +1,3 @@ -# coffeelint: disable=no_tabs -# coffeelint: disable=no_trailing_whitespace # Econ 101 if this.studyingEconomics buy() while supply > demand