# tslint-no-commented-code-rule **Repository Path**: mirrors_alexkuz/tslint-no-commented-code-rule ## Basic Information - **Project Name**: tslint-no-commented-code-rule - **Description**: TSLint rule that bans commented code - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # tslint-no-commented-code-rule TSLint rule that bans commented code ### Usage ```js { "extends": [ "tslint-no-commented-code-rule" ], "rules": { "no-commented-code": [true, { // ignore any comments that have less than N lines "minLineCount": 2, // ignore all lines that match this regex "ignoredCommentRegex": "^(\\w+$|TODO|FIXME)" }] } } ```