Cleanup ignore lint error: no-single-declare-module

This commit is contained in:
segayuu
2017-12-01 12:23:28 +09:00
parent 22a3706f11
commit 92728fb5e3
2 changed files with 6 additions and 6 deletions

11
types/chai/index.d.ts vendored
View File

@@ -10,6 +10,7 @@
// Gintautas Miselis <https://github.com/Naktibalda>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
// <reference types="assertion-error"/>
declare namespace Chai {
@@ -1651,10 +1652,10 @@ declare namespace Chai {
declare const chai: Chai.ChaiStatic;
declare module "chai" {
export = chai;
}
export = chai;
interface Object {
should: Chai.Assertion;
declare global {
interface Object {
should: Chai.Assertion;
}
}

View File

@@ -9,7 +9,6 @@
"no-empty-interface": false,
"no-inferrable-types": false,
"no-redundant-jsdoc-2": false,
"no-single-declare-module": false,
"no-unnecessary-class": false,
"no-unnecessary-generics": false,
"prefer-const": false,