Options
All
  • Public
  • Public/Protected
  • All
Menu

: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.

Travis Coveralls Size

Greenkeeper badge Dependencies Dev Dependencies

npm Package NPM Downloads

styled with prettier semantic-release

License: MIT Donate

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 configured

The 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:

{
    "rulesDirectory": "node_modules/tslint-ban-snippets/dist/lib",
    "rules": {
        // tslint rules 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":

    "rules": {
        // other rules here...
        "tsl-ban-snippets": [
            true,
            {
                "banned": [
                    {
                        "snippets": ["return void"]
                    }
                ]
            }
        ]
    }

Example that uses a regular expression:

    "rules": {
        // other rules here...
        "tsl-ban-snippets": [
            true,
            {
                "banned": [
                    {
                        "regexSnippets": ["return void [reject|resolve]"],
                    }
                ]
            }
        ]
    }

Here is another example, with more options:

    "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.

For working examples, please see the unit tests.

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.

origin

This project is based on the excellent seeder project 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

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 file for details

Index

Type aliases

BanSnippetsRuleConfig

BanSnippetsRuleConfig: object

Type declaration

BannedSnippet

BannedSnippet: object

Type declaration

  • Optional excludePaths?: string[]
  • Optional includePaths?: string[]
  • Optional message?: undefined | string
  • Optional regexSnippets?: string[]
  • Optional snippets?: string[]

Variables

Const BAN_SNIPPETS_RULE_ID

BAN_SNIPPETS_RULE_ID: "tsl-ban-snippets" = "tsl-ban-snippets"

Const REGEX_SNIPPETS_PROP

REGEX_SNIPPETS_PROP: "regexSnippets" = "regexSnippets"

Const SNIPPETS_PROP

SNIPPETS_PROP: "snippets" = "snippets"

Legend

  • Module
  • Object literal
  • Variable
  • Function
  • Function with type parameter
  • Index signature
  • Type alias
  • Enumeration
  • Enumeration member
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Constructor
  • Property
  • Method
  • Index signature
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Accessor
  • Index signature
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Protected property
  • Protected method
  • Protected accessor
  • Private property
  • Private method
  • Private accessor
  • Static property
  • Static method

Generated using TypeDoc