init the repo and integrate rrweb-snapshot

This commit is contained in:
Yanzhen Yu
2018-10-06 23:13:51 +08:00
commit f8079fbea7
9 changed files with 126 additions and 0 deletions

21
tslint.json Normal file
View File

@@ -0,0 +1,21 @@
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"no-any": true,
"quotemark": [true, "single"],
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-unused-variable": true,
"object-literal-key-quotes": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"arrow-parens": false
},
"rulesDirectory": []
}