Skip to content

Commit 75ac27c

Browse files
fix: 🐛 wrong glob pattern for activationEvents
1 parent 0fdbff5 commit 75ac27c

File tree

4 files changed

+2686
-5467
lines changed

4 files changed

+2686
-5467
lines changed

.eslintrc.json

+29-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"root": true,
33
"parser": "@typescript-eslint/parser",
4-
"plugins": ["@typescript-eslint", "jest"],
4+
"plugins": [
5+
"@typescript-eslint",
6+
"jest"
7+
],
58
"env": {
69
"es6": true,
710
"node": true,
@@ -14,21 +17,39 @@
1417
"plugin:@typescript-eslint/recommended"
1518
],
1619
"rules": {
17-
"semi": [2, "always"],
18-
"quotes": [2, "single"],
20+
"semi": [
21+
2,
22+
"always"
23+
],
24+
"quotes": [
25+
2,
26+
"double"
27+
],
1928
"comma-spacing": 2,
20-
"indent": [2, 2],
29+
"indent": [
30+
2,
31+
2
32+
],
2133
"no-constant-condition": 2,
2234
"no-case-declarations": 0,
2335
"@typescript-eslint/no-unused-vars": 0,
2436
"@typescript-eslint/no-var-requires": 0,
2537
"@typescript-eslint/no-explicit-any": "off",
2638
"@typescript-eslint/explicit-module-boundary-types": 0,
27-
"comma-dangle": [2, "always-multiline"],
39+
"comma-dangle": [
40+
2,
41+
"always-multiline"
42+
],
2843
"no-var": 2,
29-
"eqeqeq": [2, "allow-null"],
44+
"eqeqeq": [
45+
2,
46+
"allow-null"
47+
],
3048
"no-trailing-spaces": 2,
3149
"arrow-spacing": 2,
32-
"object-curly-spacing": [2, "always"]
50+
"object-curly-spacing": [
51+
2,
52+
"always"
53+
]
3354
}
34-
}
55+
}

0 commit comments

Comments
 (0)