UNPKG

424 BJavaScriptView Raw
1module.exports = {
2 extends: 'tslint-config-airbnb',
3 rules: {
4 'ter-indent': [
5 true,
6 4,
7 { SwitchCase: 1 }
8 ],
9 'trailing-comma': true,
10 'no-increment-decrement': false,
11 'max-line-length': [true, 120],
12 'prefer-const': false,
13 'variable-name': [true, 'allow-pascal-case'],
14 align: [true, 'parameters', 'statements']
15 }
16};