Christian Rackerseder
Christian Rackerseder
> Is there a website to search for existing keyboard shortcuts across all packages for Atom? That would be helpful to make sure we avoid collisions. That would be a...
Can this be done in the angular-underscore library? I would like to use it like so: ``` javascript angular.module('myApp', ['angular-underscore']) .controller('MyCtrl', function($scope, _) { }); ```
tl;dr: `elm-app analyse` Long version: Yes, it is a tool similar to ESLint / TSLint that analyse your code. It gives you best practices like unused imports, line length exceeded...
Any news about that? I get some coffeelint errors because it lints the generated coffeescript that coffee-react-transform produce.
Any news about that? I am using oboe in my [Apache Cordova](http://cordova.apache.org) app. There I make AJAX / oboe requests to my local files that are get downloaded to my...
For all that are struggling with that: my current, slightly ugly, workaround is ``` js let doneCalled = false; window.resolveLocalFileSystemURL( 'cdvfile://localhost/persistent/my-data.json', fileEntry => { // file:///data/user/0/my.package.for.my.app/files/files/my-data.json const url = fileEntry.toURL();...
Hmm my post above is not a real solution. If something **really** fails, then I never know if it was a real error or a `.fail()` that's always get called...
At the moment I have to use it like following code and wrap it in an self created promise: ``` js const parser = () => { return new Promise((resolve,...
Could anyone here provide a small demo repository? At the moment I'm struggling a little bit with this and don't get it to work. - did you change your webpack.config.js?...