tslint-consistent-codestyle icon indicating copy to clipboard operation
tslint-consistent-codestyle copied to clipboard

Collection of awesome rules to extend TSLint

Results 33 tslint-consistent-codestyle issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

greenkeeper

*** 🚨 **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...

greenkeeper

## 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...

greenkeeper

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. ![image](https://user-images.githubusercontent.com/3229242/71936777-49eacc00-315f-11ea-8710-fe8ce6934063.png) 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...