mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Revert 👕 for spec fixtures
This commit is contained in:
3
spec/fixtures/coffee.coffee
vendored
3
spec/fixtures/coffee.coffee
vendored
@@ -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))
|
||||
|
||||
@@ -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
|
||||
|
||||
2
spec/fixtures/sample-with-tabs.coffee
vendored
2
spec/fixtures/sample-with-tabs.coffee
vendored
@@ -1,5 +1,3 @@
|
||||
# coffeelint: disable=no_tabs
|
||||
# coffeelint: disable=no_trailing_whitespace
|
||||
# Econ 101
|
||||
if this.studyingEconomics
|
||||
buy() while supply > demand
|
||||
|
||||
Reference in New Issue
Block a user