dependencies: Upgrade @typescript-eslint/eslint-plugin to 1.9.0.

Updated .eslintrc with new rules.
This commit is contained in:
Thomas Ip
2019-05-31 13:15:00 +08:00
committed by Tim Abbott
parent 7643417c82
commit 1268616ca2
4 changed files with 51 additions and 10 deletions

View File

@@ -4,10 +4,10 @@ import * as _ from 'underscore';
* Implementation detail of the Dict class. `key` is `k` converted to a string,
* in lowercase if the `fold_case` option is enabled.
*/
type KeyValue<K, V> = { k: K; v: V }
type KeyValue<K, V> = { k: K; v: V };
type Items<K, V> = {
[key: string]: KeyValue<K, V>;
}
};
/**
* This class primarily exists to support the fold_case option, because so many