1
0
Fork 0

lint: disable any warnings

This commit is contained in:
ssube 2019-09-11 19:29:51 -05:00
parent 38c9016530
commit b6ac7201e9
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
3 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@
"never-prefix"
],
"max-classes-per-file": [
true,
false,
1
],
"max-file-line-count": 250,

View File

@ -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';

View File

@ -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;