Skip to content

Commit

Permalink
Fix dtslint
Browse files Browse the repository at this point in the history
Closes GH-71.
Closes GH-72.

Reviewed-by: Junyoung Choi <fluke8259@gmail.com>
Reviewed-by: Titus Wormer <tituswormer@gmail.com>
  • Loading branch information
ChristianMurphy authored and wooorm committed Oct 2, 2019
1 parent 7086cef commit 9786410
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ declare namespace unified {
/**
* Configuration passed to a Plugin or Processor
*/
type Settings = {
interface Settings {
[key: string]: unknown
}

Expand Down
5 changes: 2 additions & 3 deletions types/tslint.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"extends": "dtslint/dtslint.json",
"rules": {
"callable-types": false,
"max-line-length": false,
"no-redundant-jsdoc": false,
"no-void-expression": false,
"only-arrow-functions": false,
"semicolon": false,
"unified-signatures": false,
"whitespace": false,
"interface-over-type-literal": false,
"no-unnecessary-generics": false
"no-unnecessary-generics": false,
"strict-export-declare-modifiers": false
}
}

0 comments on commit 9786410

Please sign in to comment.