Files
protocol/packages/tslint-config/CHANGELOG.md
2018-03-29 12:49:39 +02:00

1.3 KiB

CHANGELOG

v0.4.9 - February 9, 2018

* Move devDeps to deps to fix missed dependency issue in published package.

v0.4.8 - February 9, 2018

* Fix publish issue where custom TSLint rules were not being included (#389)

v0.4.7 - February 7, 2018

* Modified custom 'underscore-privates' rule, changing it to 'underscore-private-and-protected' requiring underscores to be prepended to both private and protected variable names (#354)

v0.4.0 - December 28, 2017

* Added custom 'underscore-privates' rule, requiring underscores to be prepended to private variable names
* Because our tools can be used in both a TS and JS environment, we want to make the private methods of any public facing interface show up at the bottom of auto-complete lists. Additionally, we wanted to remain consistent with respect to our usage of underscores in order to enforce this rule with a linter rule, rather then manual code reviews.

v0.3.0 - December 20, 2017

* Added rules for unused imports, variables and Async suffixes (#265)

v0.1.0 - November 14, 2017

* Re-published TsLintConfig previously published under NPM package `tslint-config-0xproject`
* Updated to TSLint v5.8.0, requiring several rule additions to keep our conventions aligned.