lint: disable any warnings
This commit is contained in:
parent
38c9016530
commit
b6ac7201e9
|
@ -33,7 +33,7 @@
|
|||
"never-prefix"
|
||||
],
|
||||
"max-classes-per-file": [
|
||||
true,
|
||||
false,
|
||||
1
|
||||
],
|
||||
"max-file-line-count": 250,
|
||||
|
|
|
@ -3,6 +3,8 @@ import { Options, showCompletionScript, usage } from 'yargs';
|
|||
import { RuleSelector } from '../rule';
|
||||
import { VERSION_INFO } from '../version';
|
||||
|
||||
/* tslint:disable:no-any */
|
||||
|
||||
export const CONFIG_ARGS_NAME = 'config-name';
|
||||
export const CONFIG_ARGS_PATH = 'config-path';
|
||||
|
||||
|
|
|
@ -13,6 +13,8 @@ import { VisitorContext } from './visitor/VisitorContext';
|
|||
import { VisitorError } from './visitor/VisitorError';
|
||||
import { VisitorResult } from './visitor/VisitorResult';
|
||||
|
||||
/* tslint:disable:no-any */
|
||||
|
||||
export interface RuleData {
|
||||
// metadata
|
||||
desc: string;
|
||||
|
|
Loading…
Reference in New Issue