tslint-config-olo
Version:
Olo's TSLint configs
19 lines • 804 B
JavaScript
module.exports = {
'rules': {
'align': true,
'class-name': true,
'comment-format': [true, 'check-space'],
'interface-name': [true, 'always-prefix'],
'jsdoc-format': true,
'new-parens': true,
'no-angle-bracket-type-assertion': true,
'no-consecutive-blank-lines': true,
'no-parameter-properties': true,
'one-line': [true, 'check-catch', 'check-finally', 'check-else', 'check-open-brace', 'check-whitespace'],
'one-variable-per-declaration': false,
'quotemark': [true, 'single', 'jsx-double', 'avoid-escape'],
'semicolon': [true, 'ignore-bound-class-methods'],
'variable-name': false,
'whitespace': [true, 'check-branch', 'check-decl', 'check-operator', 'check-module', 'check-separator', 'check-type', 'check-typecast']
}
};