Fix lint errors

This commit is contained in:
dominic.griesel
2018-11-15 10:58:26 +01:00
committed by Al Calzone
parent 99f2917731
commit ef89cb895e
4 changed files with 1401 additions and 1383 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
// Help! what to test here?
declare const adapter: ioBroker.Adapter;
adapter.setState("not.a.state", true);

View File

@@ -7,6 +7,7 @@
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"

View File

@@ -1 +1,8 @@
{ "extends": "dtslint/dt.json" }
{
"extends": "dtslint/dtslint.json",
"rules": {
// This package has its own type `Object` which is not equal to the global `Object` type
// To avoid any confusion, it is referenced as `ioBroker.Object` instead of just `Object`
"no-unnecessary-qualifier": false
}
}