-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update linting dependencies and fix lint errors
- Loading branch information
1 parent
b8a0fc9
commit 5aa8cf2
Showing
98 changed files
with
1,261 additions
and
974 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
extends: 'octane', | ||
extends: 'recommended', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
packages/ember-cli-fastboot/fastboot-app-lt-2-9/initializers/dom-helper-patches.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
/*globals Ember, URL*/ | ||
/* globals Ember */ | ||
export default { | ||
name: "dom-helper-patches", | ||
name: 'dom-helper-patches', | ||
|
||
initialize: function(App) { | ||
initialize: function () { | ||
// TODO: remove me | ||
Ember.HTMLBars.DOMHelper.prototype.protocolForURL = function(url) { | ||
Ember.HTMLBars.DOMHelper.prototype.protocolForURL = function (url) { | ||
var protocol = URL.parse(url).protocol; | ||
return (protocol == null) ? ':' : protocol; | ||
return protocol == null ? ':' : protocol; | ||
}; | ||
|
||
// TODO: remove me https://github.com/tildeio/htmlbars/pull/425 | ||
Ember.HTMLBars.DOMHelper.prototype.parseHTML = function(html) { | ||
Ember.HTMLBars.DOMHelper.prototype.parseHTML = function (html) { | ||
return this.document.createRawHTMLSection(html); | ||
}; | ||
} | ||
}, | ||
}; |
Oops, something went wrong.