Cleanup ignore lint error: no-declare-current-package

This commit is contained in:
segayuu
2017-12-01 13:01:06 +09:00
parent 14af0a7169
commit e080c0caa8
2 changed files with 3 additions and 4 deletions

View File

@@ -256,7 +256,7 @@ declare namespace Chai {
(object: Object, property: string, message?: string): Assertion;
}
export interface Assert {
interface Assert {
/**
* @param expression Expression to test for truthiness.
* @param message Message to display on error.
@@ -1587,7 +1587,7 @@ declare namespace Chai {
doesNotHaveAllDeepKeys<T>(object: T, keys: Array<Object | string> | { [key: string]: any }, message?: string): void;
}
export interface Config {
interface Config {
/**
* Default: false
*/
@@ -1604,7 +1604,7 @@ declare namespace Chai {
truncateThreshold: number;
}
export class AssertionError {
class AssertionError {
constructor(message: string, _props?: any, ssf?: Function);
name: string;
message: string;

View File

@@ -5,7 +5,6 @@
"callable-types": false,
"new-parens": false,
"no-construct": false,
"no-declare-current-package": false,
"no-empty-interface": false,
"no-inferrable-types": false,
"no-redundant-jsdoc-2": false,