style: make eslint check .ts files

This commit is contained in:
harttle
2020-12-08 00:24:07 +08:00
parent ef43120d6e
commit 117673a725
6 changed files with 8 additions and 10 deletions
-1
View File
@@ -3,7 +3,6 @@ import { Context } from '../context/context'
import { isFunction } from '../util/underscore'
import { isTruthy } from '../render/boolean'
export const operatorImpls: {[key: string]: (lhs: any, rhs: any, ctx: Context) => boolean} = {
'==': (l: any, r: any) => {
if (isComparable(l)) return l.equals(r)