Satwik Kansal
Satwik Kansal
Hi all! A major release of WTFPython is long overdue, there are some great potential inclusions already in the Issues section, and I have a few of myself too that...
The current implementation could improve q-scores faster if we start from epsilon value of 0.95, and decay it gradually to 0.1. Something like the following should do the trick ```py...
We can ask the users to - Select sections from the existing `.coafile` - Ignore and overwrite the existing `.coafile` - Skip running quickstart and use the `.coafile` as is...
There are no tests currently. Code: https://github.com/coala/coala-quickstart/blob/master/coala_quickstart/coala_quickstart.py#L60
This method `coalib.settings.ConfigurationGathering.get_filtered_bears` is replaced with `coalib.settings.ConfigurationGathering.get_all_bears` in https://github.com/coala/coala/pull/4240 and will be deprecated as per discussion in https://github.com/coala/coala/issues/4519 The usage needs to be changed to the more generic `FilterHelper.get_filtered_bears` importance/high
Just an idea that I had in mind In "system-dependent" mode we can suggest/activate bears based on the existing bear dependency installed on the user's system. For example activate `CPPCheckBear`...
Similar to the way github suggests `.gitignore`, we can either create our own templates or use the Github's API. Links https://developer.github.com/v3/gitignore/ https://github.com/github/gitignore status/needs design
This could be another step in increasing automation. We can generate a shell script file that has commands to install the dependencies of all the bears in the written ".coafile"...
Some developers use `.npmignore` file to keep stuff out of their npm package. If there's no `.npmignore` file, but there is a `.gitignore` file, then npm will ignore the stuff...
Currently, only non-optional settings are attempted to be auto-filled.