The TSLint configuration I use for Euclid and other Alexandrian projects.
npm install tslint-config-euclid

This is a basic TSLint package which contains my personal TSLint preferences.
It may also be useful to anyone else who happens to have similar preferences.
Specifically, it uses the Airbnb JavaScript Style Guide
as much as possible, with some extra settings, such as no-magic-numbers, etc.
``sh`
npm install tslint-config-euclid --save-dev
In tslint.json:
`json``
{
"extends": "tslint-config-euclid"
}
MIT