diff --git a/spec/fixtures/sample.coffee b/spec/fixtures/sample.coffee index 9fc4750b8..b8367ca59 100644 --- a/spec/fixtures/sample.coffee +++ b/spec/fixtures/sample.coffee @@ -20,4 +20,4 @@ class quicksort noop: -> # just a noop -exports.modules = quicksort \ No newline at end of file +exports.modules = quicksort diff --git a/spec/spec-bootstrap.coffee b/spec/spec-bootstrap.coffee index aac05fef1..7a0f30cba 100644 --- a/spec/spec-bootstrap.coffee +++ b/spec/spec-bootstrap.coffee @@ -1,4 +1,4 @@ {runSpecSuite} = require 'jasmine-helper' document.title = "Spec Suite" -runSpecSuite "spec-suite" \ No newline at end of file +runSpecSuite "spec-suite" diff --git a/src/app/keymaps/atom.coffee b/src/app/keymaps/atom.coffee index ea88bbb3a..c55c009a5 100644 --- a/src/app/keymaps/atom.coffee +++ b/src/app/keymaps/atom.coffee @@ -4,4 +4,4 @@ window.keymap.bindKeys '*' right: 'move-right' left: 'move-left' down: 'move-down' - up: 'move-up' \ No newline at end of file + up: 'move-up' diff --git a/src/app/keymaps/keybindings-view.coffee b/src/app/keymaps/keybindings-view.coffee index 99c2344cd..de373a6e8 100644 --- a/src/app/keymaps/keybindings-view.coffee +++ b/src/app/keymaps/keybindings-view.coffee @@ -2,4 +2,4 @@ window.keymap.bindKeys '*', 'ctrl-?': 'keybindings-view:attach' window.keymap.bindKeys ".keybindings-view", - 'escape': 'keybindings-view:detach' \ No newline at end of file + 'escape': 'keybindings-view:detach' diff --git a/src/app/pane-column.coffee b/src/app/pane-column.coffee index 963dc1b71..f00c7ed23 100644 --- a/src/app/pane-column.coffee +++ b/src/app/pane-column.coffee @@ -29,4 +29,4 @@ class PaneColumn extends PaneGrid Math.max(@horizontalChildUnits()...) verticalGridUnits: -> - _.sum(@verticalChildUnits()) \ No newline at end of file + _.sum(@verticalChildUnits()) diff --git a/src/extensions/keybindings-view/index.coffee b/src/extensions/keybindings-view/index.coffee index d1bc7b87c..fc9229496 100644 --- a/src/extensions/keybindings-view/index.coffee +++ b/src/extensions/keybindings-view/index.coffee @@ -1 +1 @@ -module.exports = require 'keybindings-view/keybindings-view' \ No newline at end of file +module.exports = require 'keybindings-view/keybindings-view' diff --git a/src/extensions/tree-view/file-view.coffee b/src/extensions/tree-view/file-view.coffee index 5be53a3fd..486c35b6f 100644 --- a/src/extensions/tree-view/file-view.coffee +++ b/src/extensions/tree-view/file-view.coffee @@ -11,4 +11,4 @@ class FileView extends View initialize: (@file) -> getPath: -> - @file.path \ No newline at end of file + @file.path diff --git a/src/extensions/tree-view/index.coffee b/src/extensions/tree-view/index.coffee index 592ad835e..26740b31b 100644 --- a/src/extensions/tree-view/index.coffee +++ b/src/extensions/tree-view/index.coffee @@ -1 +1 @@ -module.exports = require 'tree-view/tree-view' \ No newline at end of file +module.exports = require 'tree-view/tree-view' diff --git a/src/stdlib/fs.coffee b/src/stdlib/fs.coffee index 85b26a6d6..8247d7887 100644 --- a/src/stdlib/fs.coffee +++ b/src/stdlib/fs.coffee @@ -100,4 +100,4 @@ module.exports = deferred = $.Deferred() $native.asyncList path, true, (subpaths) -> deferred.resolve subpaths - deferred \ No newline at end of file + deferred diff --git a/src/stdlib/native.coffee b/src/stdlib/native.coffee index 9c5c58a5e..163af0d17 100644 --- a/src/stdlib/native.coffee +++ b/src/stdlib/native.coffee @@ -2,4 +2,4 @@ module.exports = class Native @alert: (args...) -> $native.alert(args...) - @moveToTrash: (args...) -> $native.moveToTrash(args...) \ No newline at end of file + @moveToTrash: (args...) -> $native.moveToTrash(args...) diff --git a/src/stdlib/underscore-extensions.coffee b/src/stdlib/underscore-extensions.coffee index 904f6eb9f..ef59494cf 100644 --- a/src/stdlib/underscore-extensions.coffee +++ b/src/stdlib/underscore-extensions.coffee @@ -44,4 +44,4 @@ _.mixin # I choose to escape every character with '\' # even though only some strictly require it when inside of [] regex = RegExp('[' + specials.join('\\') + ']', 'g') - string.replace(regex, "\\$&"); \ No newline at end of file + string.replace(regex, "\\$&");