Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrseanryan/tslint-ban-snippets
:no_entry_sign: A custom tslint rule to ban configurable lists of code snippets. examples: "return void reject", "it.only", "debugger".
https://github.com/mrseanryan/tslint-ban-snippets
code-analysis linter linting static-analysis tslint
Last synced: 7 days ago
JSON representation
:no_entry_sign: A custom tslint rule to ban configurable lists of code snippets. examples: "return void reject", "it.only", "debugger".
- Host: GitHub
- URL: https://github.com/mrseanryan/tslint-ban-snippets
- Owner: mrseanryan
- License: mit
- Created: 2018-11-28T14:27:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T20:08:03.000Z (over 1 year ago)
- Last Synced: 2024-09-24T19:09:22.767Z (about 2 months ago)
- Topics: code-analysis, linter, linting, static-analysis, tslint
- Language: TypeScript
- Homepage:
- Size: 2.11 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: code-of-conduct.md
Awesome Lists containing this project
README
# :no_entry_sign: tslint-ban-snippets readme
A custom tslint rule to ban configurable lists of code snippets.
examples: "return void reject", "it.only", "debugger".
## status - stable
**tslint-ban-snippets** is stable and in use every day in CI builds and on dev boxes (Linux, Mac, Windows) for at least one major product.
**tslint-ban-snippets** WILL be maintained, as long as tslint is around. BUT recommend switching to the `eslint` equivalent, [eslint-plugin-ts-ban-snippets](https://github.com/mrseanryan/eslint-plugin-ts-ban-snippets).
[![Build Status](https://travis-ci.com/mrseanryan/tslint-ban-snippets.svg?branch=master)](https://travis-ci.com/mrseanryan/tslint-ban-snippets)
[![Coveralls](https://img.shields.io/coveralls/mrseanryan/tslint-ban-snippets.svg)](https://coveralls.io/github/mrseanryan/tslint-ban-snippets)
[![Size](https://packagephobia.now.sh/badge?p=tslint-ban-snippets)](https://packagephobia.now.sh/result?p=tslint-ban-snippets)[![Dependencies](https://david-dm.org/mrseanryan/tslint-ban-snippets.svg)](https://david-dm.org/mrseanryan/tslint-ban-snippets)
[![npm Package](https://img.shields.io/npm/v/tslint-ban-snippets.svg?style=flat-square)](https://www.npmjs.org/package/tslint-ban-snippets)
[![NPM Downloads](https://img.shields.io/npm/dm/tslint-ban-snippets.svg)](https://npmjs.org/package/tslint-ban-snippets)[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/K3K73ALBJ)
## dependencies
No special dependencies - just `TypeScript` and of course `tslint`.
## features
- a custom tslint rule that can detect code snippets that are not desired
- configurable for multiple code snippets
- can include/exclude file paths
- the error message can also be configuredThe rule is quite flexible and could potentially avoid having to create multiple custom tslint rules.
### custom tslint rule
The custom rule `tsl-ban-snippets` can be configured with small snippets of code that should NOT be used by developers.
If tslint finds the snippets of code, it will raise an error for that line of code.
In this way, a code base can be kept clean of unwanted coding practices.
### note: the rule name
The rule name is `tsl-ban-snippets` to avoid using the prefix `tslint-` which was found to be problematic when other `tslint` libraries are in use.
### note: comparison to the standard `ban` rule
There is a standard tslint rule named `ban`. However its scope is quite limited - the `tsl-ban-snippets` rule applies to any statement in a TypeScript file, and so can be configured to detect most unwanted code snippets.
## usage
### 1 Install via npm (or yarn) into your TypeScript project
```
npm install tslint-ban-snippets
```### 2 Configure tslint to pick up the custom rule
Edit your `tslint.json` to have an entry `"rulesDirectory"` that points to **tslint-ban-snippets**.
Normally this would be like:
```json
{
"rulesDirectory": "node_modules/tslint-ban-snippets/dist/lib",
"rules": {
"tsl-ban-snippets": [
// custom banned snippets here...
]
}
}
```Alternatively, you can store the custom rules in a separate file:
`tslint.json:`
```json
{
"extends": ["./tslint.tslint-ban-snippets.json"],
// ...
}`tslint.tslint-ban-snippets.json:`
```json
{
"rulesDirectory": "node_modules/tslint-ban-snippets/dist/lib",
"rules": {
"tsl-ban-snippets": [
// custom banned snippets here...
]
}
}
```### 3 Configure the custom rule `tsl-ban-snippets`
Now you can configure the custom rule, to ban whatever code snippets you do NOT want developers to use.
#### examples
Example of how to ban the use of "return void":
```json
"rules": {
// other rules here...
"tsl-ban-snippets": [
true,
{
"banned": [
{
"snippets": ["return void"]
}
]
}
]
}
```Example to ban the disabling of tests:
```json
"rules": {
"tsl-ban-snippets": [
true,
{
"banned": [
{
"snippets": ["it.only", "describe.only"],
"message": "Do not enable only some tests."
},
{
"snippets": ["it.skip", "describe.skip"],
"message": "Do not skip tests."
}
]
}
]
}
```Example that uses a regular expression, to ban both `return void reject` and `return void resolve`:
```json
"rules": {
// other rules here...
"tsl-ban-snippets": [
true,
{
"banned": [
{
"regexSnippets": ["return void [reject|resolve]"],
}
]
}
]
}
```Here is another example, with more options.
This example bans `return void` aswell as `return void reject` and `return void resolve`.
```json
"rules": {
// other rules here...
"tsl-ban-snippets": [
true,
{
"banned": [
{
"snippets": ["return void"],
"message": "Please do not return void - instead place the return statement on the following line.",
"includePaths": [".ts", ".tsx"],
"excludePaths": ["itest"]
},
{
"regexSnippets": ["return void [reject|resolve]"],
"message": "Please do not return void - instead place the return statement on the following line.",
"includePaths": [".ts", ".tsx"],
"excludePaths": []
}
]
}
]
}
```For more examples of how to configure, please see [tslint.json](https://github.com/mrseanryan/tslint-ban-snippets/blob/master/tslint.tslint-ban-snippets.json).
For working tests, please see the [unit tests](https://github.com/mrseanryan/tslint-ban-snippets/blob/master/test/rules).
For a real code example, see the [test harness](https://github.com/mrseanryan/tslint-ban-snippets/tree/master/testHarness/simple-typescript-project) and in particular the [config file](https://github.com/mrseanryan/tslint-ban-snippets/blob/master/testHarness/simple-typescript-project/tslint.tslint-ban-snippets.json).
## sites
| site | URL |
| -------------------- | ------------------------------------------------- |
| source code (github) | https://github.com/mrseanryan/tslint-ban-snippets |
| github page | https://mrseanryan.github.io/tslint-ban-snippets/ |
| npm | https://www.npmjs.com/package/tslint-ban-snippets |## developing code in _this_ repository
see the [contributing readme](CONTRIBUTING.md).
## origin
This project is based on the excellent seeder project [typescript-library-starter](https://github.com/alexjoverm/typescript-library-starter).
The project was started to avoid having to repeatedly fix similar coding issues in large TypeScript code bases.
### ORIGINAL readme (from the seeder project)
[see here](https://github.com/mrseanryan/tslint-ban-snippets/blob/master/readme.original.md)
## authors
Original work by Sean Ryan - mr.sean.ryan(at gmail.com)
## licence = MIT
This project is licensed under the MIT License - see the [LICENSE](https://github.com/mrseanryan/tslint-ban-snippets/blob/master/LICENSE) file for details