Important
This project is deprecated and is read-only for historical context only.
As tslint is being deprecated in favor of eslint, we have transitioned our eslint config to now support TypeScript
At Guild, our TypeScript style is based on JavaScript Standard Style with a few exceptions:
- Function declarations should not have a space before the parentheses:
function name (arg) { ... } // ✗ avoid function name(arg) { ... } // ✓ ok
yarn add --dev tslint-config-guildTo use the Guild TypeScript Style config, first add tslint to your project:
yarn add --dev tslintThen, add this to your tslint.json file:
{
"extends": "tslint-config-guild"
}