Skip to content

Latest commit

 

History

History

tsqllint

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

tsqllint

alpine:edge-based dockerization of TSQLLint the util for listing mssql code

As the site says:

TSQLLint is a tool for describing, identifying, and reporting the presence of anti-patterns in TSQL scripts.

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

The following shell function can assist in running this image interactively:

tsqllint() {
  docker run \
    --rm \
    --interactive \
    --tty \
    --volume "$(pwd):/work" \
    "backplane/tsqllint" \
    "$@"
}