Disable no-misused-new linting rule, so we can stay in line with winston's conventions.

See https://github.com/winstonjs/winston-mongodb/blob/master/lib/winston-mongodb.d.ts and https://github.com/winstonjs/winston-daily-rotate-file/blob/master/index.d.ts
This commit is contained in:
felix-hoc
2018-08-10 11:50:28 +02:00
parent cb332fb849
commit 94bf96d428

View File

@@ -1,3 +1,8 @@
{
"extends": "dtslint/dt.json"
"extends": "dtslint/dt.json",
"rules": {
// This allows to be in line with winston transport types.
// See https://github.com/winstonjs/winston-mongodb/blob/master/lib/winston-mongodb.d.ts and https://github.com/winstonjs/winston-daily-rotate-file/blob/master/index.d.ts
"no-misused-new": false
}
}