提交 4913b78f 编写于 作者: Huan (李卓桓)'s avatar Huan (李卓桓)

fix linting

上级 613e248e
......@@ -22,8 +22,8 @@ const ApiAi = require('apiai')
import { EventEmitter } from 'events'
import {
// Room
Wechaty
Config
, Wechaty
} from '..'
// log.level = 'verbose'
......
......@@ -8,7 +8,7 @@
import { test } from 'ava'
import {
Config
Config
, hasDockerContainerId
} from './config'
import { Puppet } from './puppet'
......@@ -96,7 +96,7 @@ test('hasDockerContainerId()', t => {
const LINE = '1:name=systemd:/docker/f6da3e510ff2263a368cc8a57bf35b0d1c92a3d6d387e87de8e98e082af6a41c'
const UBUNTU = '1:name=systemd:/init.scope'
t.true(isDockerContainerId(ID) , 'should identify container id right')
t.true(isDockerContainerId(LINE) , 'should identify container id from cgroup file right')
t.false(isDockerContainerId(UBUNTU) , 'should identify ubuntu cgroup line not docker')
t.true(hasDockerContainerId(ID) , 'should identify container id right')
t.true(hasDockerContainerId(LINE) , 'should identify container id from cgroup file right')
t.false(hasDockerContainerId(UBUNTU) , 'should identify ubuntu cgroup line not docker')
})
......@@ -218,7 +218,7 @@ global['WECHATY_CONFIG_INSTANCE_COUNTER']++
function hasDockerContainerId(line: string) {
// d22ff5ccbf50790c4724e19a30a6a6057d03d684ea3c2b0ddac1bf028e2cf470
re = /[a-f0-9]{64}$/i
const re = /[a-f0-9]{64}$/i
return re.test(line)
}
......
......@@ -41,7 +41,9 @@ export type MessageRawObj = {
MMAppMsgFileExt: string // doc, docx ...
FileName: string
MMAppMsgFileSize: number
MMAppMsgDownloadUrl: string // <a download ng-if="message.MMFileStatus == CONF.MM_SEND_FILE_STATUS_SUCCESS && (massage.MMStatus == CONF.MSG_SEND_STATUS_SUCC || massage.MMStatus === undefined) " href="{{message.MMAppMsgDownloadUrl}}">下载</a>
MMAppMsgDownloadUrl: string // <a download ng-if="message.MMFileStatus == CONF.MM_SEND_FILE_STATUS_SUCCESS
// && (massage.MMStatus == CONF.MSG_SEND_STATUS_SUCC || massage.MMStatus === undefined)
// " href="{{message.MMAppMsgDownloadUrl}}">下载</a>
MMUploadProgress: number // < 100
/**
......@@ -119,11 +121,12 @@ export type MessageObj = {
url?: string // for MessageMedia class
}
// export type MessageTypeName = 'TEXT' | 'IMAGE' | 'VOICE' | 'VERIFYMSG' | 'POSSIBLEFRIEND_MSG' | 'SHARECARD' | 'VIDEO' | 'EMOTICON' | 'LOCATION' | 'APP' | 'VOIPMSG' | 'STATUSNOTIFY' | 'VOIPNOTIFY' | 'VOIPINVITE' | 'MICROVIDEO' | 'SYSNOTICE' | 'SYS' | 'RECALLED'
// export type MessageTypeName = 'TEXT' | 'IMAGE' | 'VOICE' | 'VERIFYMSG' | 'POSSIBLEFRIEND_MSG'
// | 'SHARECARD' | 'VIDEO' | 'EMOTICON' | 'LOCATION' | 'APP' | 'VOIPMSG' | 'STATUSNOTIFY'
// | 'VOIPNOTIFY' | 'VOIPINVITE' | 'MICROVIDEO' | 'SYSNOTICE' | 'SYS' | 'RECALLED'
// export type MessageTypeValue = 1 | 3 | 34 | 37 | 40 | 42 | 43 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 62 | 9999 | 10000 | 10002
export type MessageTypeMap = {
[index: string]: string|number
// MessageTypeName: MessageTypeValue
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册