DefinitelyTyped/types/noble-mac/tslint.json
Christian Kühl bf4288fc9c [noble-mac] Add types (#31786)
* adds type definitions for noble-mac

* [noble-mac]: fix linter issues and remove linter exceptions

* [noble-mac]: fix dt-header issue
2019-01-01 13:30:49 -08:00

15 lines
558 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"ban-types": {
"options": [
["Object", "Avoid using the `Object` type. Did you mean `object`?"],
["Boolean", "Avoid using the `Boolean` type. Did you mean `boolean`?"],
["Number", "Avoid using the `Number` type. Did you mean `number`?"],
["String", "Avoid using the `String` type. Did you mean `string`?"],
["Symbol", "Avoid using the `Symbol` type. Did you mean `symbol`?"]
]
}
}
}