Revert 👕 for spec fixtures

This commit is contained in:
Machiste Quintana 2015-04-07 19:24:29 -04:00
parent 2bb2022b5b
commit ec11c89a74
3 changed files with 3 additions and 8 deletions

View File

@ -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))

View File

@ -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

View File

@ -1,5 +1,3 @@
# coffeelint: disable=no_tabs
# coffeelint: disable=no_trailing_whitespace
# Econ 101
if this.studyingEconomics
buy() while supply > demand