You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given palantir/tslint#2163 it would be nice, if the rules/ directory would contain an empty index.js. Then we could resolve the rules directory with Nodes module resolution which makes it easy to use custom rules in certain situations (symlinked configs, flat vs. non-flat installations...).
Motivation:
extends: Allows me to use custom rules from other packages. I get all rules with default configs and can opt-out from rules. If new rules are added in new version I get them automatically.
rulesDirectory : Allows me to use custom rules from other packages. I opt-in to use certain rules with my specific configs. If new rules are added in new version I don't get them automatically.
The text was updated successfully, but these errors were encountered:
Given palantir/tslint#2163 it would be nice, if the
rules/
directory would contain an emptyindex.js
. Then we could resolve the rules directory with Nodes module resolution which makes it easy to use custom rules in certain situations (symlinked configs, flat vs. non-flat installations...).Motivation:
extends
: Allows me to use custom rules from other packages. I get all rules with default configs and can opt-out from rules. If new rules are added in new version I get them automatically.rulesDirectory
: Allows me to use custom rules from other packages. I opt-in to use certain rules with my specific configs. If new rules are added in new version I don't get them automatically.The text was updated successfully, but these errors were encountered: