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
Service | Cost per month (from) | |
---|---|---|
Github | $25 then $9 per user | |
Codacy | $15 per user | |
Travis CI | $69 | |
Snyk (see note) | $499 |
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
{ | |
"extends": "airbnb", | |
"plugins": [ | |
"react" | |
], | |
"env": { | |
"es6": true | |
}, | |
"parserOptions": { | |
"ecmaVersion": 6, |
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
# Hide the element, then fade in. defer prevents choppiness | |
onRender -> | |
@$el.hide() | |
_.defer _.bind @transitionIn, @ | |
transitionIn: -> | |
@$el.slideDown() | |
# Override backbone remove method, then call it once we've finished the transition | |
remove: -> |