mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-11 19:42:23 +08:00
* Adds props to GridTile
* Adds ts line
* Fixes lint array error
Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>' instead.
* Fixes lint consecutive blank line error
* Fixes whitespace and semicolon lint errors
* Fixes lint whitespace error
Don't use blank line after '{'
* Fixes lint type error
Use an interface instead of a type literal
* Fixes lint interface error
An empty interface is equivalent to `{}`.
* Lint: Replaces var with let
Do not use 'var'
* Lint: Prefer method signature
* Lint: Fixes array type
Array type using 'T[]' is forbidden for non-simple types. Use 'Array<T>'
* Lint: Fixes boolean type
Don't use 'Boolean' as a type. Avoid using the `Boolean` type. Did you mean `boolean`?
* Lint: Ignore unneccesary exports
* Lint : fix errors
* Lint: adds missing semi-colons
* Lint: Removes spaces
* Lint: Ignore no empty interfaces (We could just delete them)
* Lint: Ignore "dt-header" (could remove patch number)
* Lint: Ignore ban-types so we can use Function
* Remove new props that I added
* Fixes var -> let over replacement
9 lines
201 B
JSON
9 lines
201 B
JSON
{
|
|
"extends": "dtslint/dt.json",
|
|
"rules": {
|
|
"strict-export-declare-modifiers": false,
|
|
"no-empty-interface": false,
|
|
"dt-header": false,
|
|
"ban-types": false
|
|
}
|
|
} |