Skip to content

Commit 21e81ba

Browse files
committed
[us40] Add eslint support to detect some unbound-method issues + add call to scheduleBakup and scheduleRunAll
1 parent 4a54fb0 commit 21e81ba

14 files changed

+1273
-265
lines changed

.eslintrc.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended-type-checked"
9+
],
10+
"overrides": [
11+
{
12+
"env": {
13+
"node": true
14+
},
15+
"files": [
16+
".eslintrc.{js,cjs}"
17+
],
18+
"parserOptions": {
19+
"sourceType": "script"
20+
}
21+
}
22+
],
23+
"parser": "@typescript-eslint/parser",
24+
"parserOptions": {
25+
"ecmaVersion": "latest",
26+
"sourceType": "module",
27+
"project": true
28+
},
29+
"plugins": [
30+
"@typescript-eslint"
31+
],
32+
"rules": {}
33+
}

.idea/inspectionProfiles/Project_Default.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)