Areeb Beigh
Areeb Beigh
Sample code: ```python x = 10 y = 5; print( 'test' ) ``` Expected PycodestyleBear output: ``` bad.py [ 2] y·=·5; **** PycodestyleBear (E703) [Section: cli | Severity: NORMAL] ****...
This commit modifies process_output to process all the detected problems instead of just the first one. Fixes https://github.com/coala/coala-bears/issues/2882 ### Checklist - [x] I read the [commit guidelines](http://coala.io/commit) and I've followed...
Currently, all the coala CLI interactions occur through numeric inputs which is very slow and cumbersome in most cases. This can be improved greatly by building more interactive CLIs using...
I noticed https://github.com/vdaubry/github-awards/blob/master/app/workers/rank_worker.rb doesn't take into account the fact that users can star their own repos? TBH I don't think it'd matter that much in large numbers but for better...
The server doesn't have any way of invalidating a user's JWT once he/she has logged out. I was able to get the JWT from the request header, logout and still...
I'm just starting out with this tutorial series and I'm confused about why we need to use an AuthenticationService to register / login users? Can't we simply have a register/login...