Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

Commit e2447e4

Browse files
committed
Code cleanup & support for comments in messages
1 parent dc2e6ae commit e2447e4

13 files changed

Lines changed: 3602 additions & 1927 deletions

.eslintrc.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"ecmaVersion": 6,
5+
"sourceType": "module"
6+
},
7+
"plugins": [
8+
"@typescript-eslint"
9+
],
10+
"env": {
11+
"node": true
12+
},
13+
"rules": {
14+
"semi": "off",
15+
"@typescript-eslint/semi": "error",
16+
"no-extra-semi": "warn",
17+
"curly": "warn",
18+
"quotes": ["error", "single", { "allowTemplateLiterals": true } ],
19+
"eqeqeq": "error",
20+
"indent": "off",
21+
"@typescript-eslint/indent": ["warn", "tab", { "SwitchCase": 1 } ]
22+
}
23+
}

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
// Place your settings in this file to overwrite default and user settings.
22
{
3-
"typescript.tsdk": "./node_modules/typescript/lib"
3+
"typescript.tsdk": "./node_modules/typescript/lib",
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll.eslint": true
6+
}
47
}

0 commit comments

Comments
 (0)