deps-lock-snitch-bot/tslint.json

34 lines
822 B
JSON
Raw Normal View History

2019-01-21 12:29:30 +00:00
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"interface-name": false,
"no-console": false,
"quotemark": [
true,
"single"
],
"prefer-const": true,
"semicolon": [
true,
"never"
],
"eofline": true,
"no-return-await": true
},
"compilerOptions": {
"plugins": [
{
"name": "typescript-tslint-plugin",
"alwaysShowRuleFailuresAsWarnings": false,
"ignoreDefinitionFiles": true,
"configFile": "./tslint.json",
"suppressWhileTypeErrorsPresent": false,
"mockTypeScriptVersion": false
}
]
}
}