UNPKG

244 BJavaScriptView Raw
1const tslintShouldEmitErrors = path => {
2 const tslintConfig = require(path)
3 if (tslintConfig.defaultSeverity === 'error') {
4 return true
5 } else {
6 return false
7 }
8}
9
10module.exports = {
11 tslintShouldEmitErrors,
12}