tslint-consistent-codestyle
tslint-consistent-codestyle copied to clipboard
Collection of awesome rules to extend TSLint
Update Readme to indicate that tslint has been deprecated
Please update TSLint `npm WARN [email protected] requires a peer of tslint@^5.0.0 but none is installed. You must install peer dependencies yourself.`
## The devDependency [nyc](https://github.com/istanbuljs/nyc) was updated from `13.3.0` to `15.0.0`. This version is **not covered** by your **current version range**. If you donβt accept this pull request, your project will...
*** π¨ **Reminder!** Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! π ππ¨ π [Find out how to migrate...
## The devDependency [coveralls](https://github.com/nickmerwin/node-coveralls) was updated from `3.0.4` to `3.0.5`. π¨ [View failing branch](https://github.com/ajafff/tslint-consistent-codestyle/compare/master...ajafff:greenkeeper%2Fcoveralls-3.0.5). This version is **covered** by your **current version range** and after updating it in your project...
Hi @ajafff Thanks for creating this package. I use multiple rules, which I find very useful. I was considering enabling `early-exit`, but was surprised by tslint complaining about this pattern:...
I see warning\squiggly in vs code for naming-convention rule violation, however if I run tslint in command line it doesn't show any errors.  My tslint.json ```json { "extends": [],...
non-passed code ``` if(a === 'submitted' || a === 'published'){ .... } if(b.substring(5) === 'https'){ ... } ``` passed code: ``` enum Statusses{ Submitted = "submitted", Published = "published" }...
I would like to set a different for naming-convention rules for control variables defined in `for` loop. For instance: ```js function fooBar() { for (let i = 0, j =...
Given the TS 2019 roadmap (https://github.com/Microsoft/TypeScript/issues/29288) and the future deprecation of TSLint (https://github.com/palantir/tslint/issues/4534), I'm wondering if there will be any work in this library to transfer any TSLint rules that...