Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

message 功能进行实现 Issue#26 #43

Merged
merged 3 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
{
"typescript.tsdk": "./node_modules/typescript/lib",

"editor.fontFamily": "'Fira Code iScript', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,

"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italics (=Pacifico)
"comment",
// "entity.name.type.class", //class names
"keyword", //import, export, return…
"support.class.builtin.js", //String, Number, Boolean…, this, super
"storage.modifier", //static keyword
"storage.type.class.js", //class keyword
"storage.type.function.js", // function keyword
"storage.type.js", // Variable declarations
"keyword.control.import.js", // Imports
"keyword.control.from.js", // From-Keyword
"entity.name.type.js", // new … Expression
"keyword.control.flow.js", // await
"keyword.control.conditional.js", // if
"keyword.control.loop.js", // for
"keyword.operator.new.js", // new
],
"settings": {
"fontStyle": "italic",
},
},
{
"scope": [
//following will be excluded from italics (My theme (Monokai dark) has some defaults I don't want to be in italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json",
"entity.name.type.class.js"
],
"settings": {
"fontStyle": "",
},
}
]
},

"files.exclude": {
"dist/": true,
"doc/": true,
"node_modules/": true,
"package/": true,
},
"prettier.enable": false,
"alignment": {
"operatorPadding": "right",
"indentBase": "firstline",
"surroundSpace": {
"colon": [1, 1], // The first number specify how much space to add to the left, can be negative. The second number is how much space to the right, can be negative.
"assignment": [1, 1], // The same as above.
"arrow": [1, 1], // The same as above.
"comment": 2, // Special how much space to add between the trailing comment and the code.
// If this value is negative, it means don't align the trailing comment.
}
},
"editor.formatOnSave": false,
"python.pythonPath": "python3",
"eslint.validate": [
"javascript",
"typescript",
],
"cSpell.words": [
"inited",
"Miniprogram",
"pushname",
"Vcard",
"vcards",
"waid",
"wechaty",
"weixin"
],
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,12 @@
"wechaty-puppet": "^0.41.9"
},
"dependencies": {
"rxjs": "^7.5.1",
"file-box": "^1.4.12",
"flash-store": "^0.12.7",
"fs-extra": "^8.1.0",
"memory-card": "^1.0.3",
"rxjs": "^7.5.1",
"wechaty-puppet": "^0.41.9",
"whatsapp-web.js": "^1.15.3"
},
"tap": {
Expand Down
Loading