Skip to content

Commit ce7bea2

Browse files
authored
Merge pull request #1618 from runbox/shadowbas/feat-worker-add-sentry-toxapian-worker-scope
feat(worker): Add sentry to xapian worker scope and angular update
2 parents 18f39af + 50b8e5d commit ce7bea2

File tree

99 files changed

+16817
-10769
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+16817
-10769
lines changed

.eslintrc.json

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
22
"root": true,
33
"ignorePatterns": [
4-
"projects/**/*"
4+
"*.scss",
5+
"*.css",
6+
"*.json"
7+
],
8+
"plugins": [
9+
"@typescript-eslint"
510
],
611
"overrides": [
712
{
8-
"files": [
9-
"*.ts"
10-
],
13+
"files": ["*.ts"],
1114
"parserOptions": {
1215
"project": [
1316
"tsconfig.json",
@@ -17,9 +20,18 @@
1720
},
1821
"extends": [
1922
"plugin:@angular-eslint/recommended",
20-
"plugin:@angular-eslint/template/process-inline-templates"
23+
"plugin:@angular-eslint/template/process-inline-templates",
24+
"plugin:@typescript-eslint/recommended"
2125
],
2226
"rules": {
27+
"@typescript-eslint/no-namespace": "warn",
28+
"@typescript-eslint/no-empty-function": "warn",
29+
"@typescript-eslint/no-useless-constructor": "off",
30+
"@typescript-eslint/no-explicit-any": "warn",
31+
"@typescript-eslint/quotes": ["error", "single"],
32+
"@typescript-eslint/no-unused-expressions": "error",
33+
"@typescript-eslint/member-ordering": "warn",
34+
"@typescript-eslint/no-shadow": "error",
2335
"@angular-eslint/component-selector": [
2436
"error",
2537
{
@@ -41,15 +53,26 @@
4153
}
4254
},
4355
{
44-
"files": [
45-
"*.html"
46-
],
56+
"files": ["*.html"],
4757
"extends": [
4858
"plugin:@angular-eslint/template/recommended"
4959
],
5060
"rules": {
5161
"@angular-eslint/template/eqeqeq": "warn"
5262
}
63+
},
64+
{
65+
"files": ["*.js"],
66+
"parserOptions": {
67+
"ecmaVersion": 2024,
68+
"sourceType": "script"
69+
},
70+
"extends": [
71+
"eslint:recommended"
72+
],
73+
"env": {
74+
"node": true
75+
}
5376
}
5477
]
5578
}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,7 @@ mockserver.log
4848

4949
# CI artifacts
5050
cypress/videos
51+
52+
# environment
53+
src/environments/env.ts
54+

0 commit comments

Comments
 (0)