More than 3 years have passed since last update.
使い方
ファイル内のすべてのルールを無効化
ファイル内の特定ルールを無効化
/* tslint:disable:rule1 rule2 rule3... */
コメントの次の行のすべてのルールを無効化
// tslint:disable-next-line
コメントの次の行の特定のルールを無効化
// tslint:disable-next-line:rule1 rule2 rule3...
例
@Directive({
// tslint:disable-next-line:directive-selector
selector: 'img[default]',
})
参考
https://palantir.github.io/tslint/usage/rule-flags/
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin