mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 01:54:40 +08:00
fix(lint): Resolve linter errors
This commit is contained in:
parent
0fdef6a1a6
commit
b488ffb6a9
3 changed files with 4 additions and 4 deletions
|
@ -4,10 +4,10 @@ module.exports =
|
|||
# This copied out CoffeeScript
|
||||
includeModule: (mixin) ->
|
||||
if not mixin
|
||||
return throw 'Supplied mixin was not found'
|
||||
return throw new Error('Supplied mixin was not found')
|
||||
|
||||
if not _
|
||||
return throw 'Underscore was not found'
|
||||
return throw new Error('Underscore was not found')
|
||||
|
||||
mixin = mixin.prototype if _.isFunction(mixin)
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ _ = require 'underscore-plus'
|
|||
|
||||
###
|
||||
Public: The Tag model represents a Nylas Tag object. For more information
|
||||
about Tags on the Nylas Platform, read the
|
||||
about Tags on the Nylas Platform, read the
|
||||
[https://nylas.com/docs/api#tags](Tags API Documentation)
|
||||
|
||||
## Attributes
|
||||
|
|
|
@ -11,7 +11,7 @@ Function::getter = (prop, get) ->
|
|||
|
||||
###
|
||||
Public: The Thread model represents a Nylas Thread object. For more information
|
||||
about Threads on the Nylas Platform, read the
|
||||
about Threads on the Nylas Platform, read the
|
||||
[https://nylas.com/docs/api#threads](Threads API Documentation)
|
||||
|
||||
## Attributes
|
||||
|
|
Loading…
Reference in a new issue