Skip to content

Commit 5b0f081

Browse files
committed
chore(webapp): reformat lint config and refresh the run-ops guard baseline
The boundedIn import shifted four line numbers in ApiBatchResultsPresenter, so the guard read its existing baseline entries as new violations. Same four violations, same file, one line lower.
1 parent cd9ad02 commit 5b0f081

2 files changed

Lines changed: 8 additions & 24 deletions

File tree

.oxlintrc.json

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"$schema": "./node_modules/oxlint/configuration_schema.json",
3-
"plugins": [
4-
"typescript",
5-
"import",
6-
"react"
7-
],
3+
"plugins": ["typescript", "import", "react"],
84
"jsPlugins": [
95
"./oxlint-plugins/no-thrown-unawaited-redirect.mjs",
106
"./oxlint-plugins/runops-residency.mjs",
@@ -53,33 +49,21 @@
5349
},
5450
"overrides": [
5551
{
56-
"files": [
57-
"apps/webapp/app/**/*.ts",
58-
"apps/webapp/app/**/*.tsx"
59-
],
52+
"files": ["apps/webapp/app/**/*.ts", "apps/webapp/app/**/*.tsx"],
6053
"rules": {
6154
"trigger-runops/no-control-plane-run-graph-access": "error",
6255
"trigger-runops/no-control-plane-in-runops-slot": "error"
6356
}
6457
},
6558
{
66-
"files": [
67-
"apps/webapp/app/**/*.test.ts",
68-
"apps/webapp/app/**/*.test.tsx"
69-
],
59+
"files": ["apps/webapp/app/**/*.test.ts", "apps/webapp/app/**/*.test.tsx"],
7060
"rules": {
7161
"trigger-runops/no-control-plane-run-graph-access": "off",
7262
"trigger-runops/no-control-plane-in-runops-slot": "off"
7363
}
7464
},
7565
{
76-
"files": [
77-
"**/*.test.ts",
78-
"**/*.test.tsx",
79-
"**/test/**",
80-
"**/tests/**",
81-
"**/e2e/**"
82-
],
66+
"files": ["**/*.test.ts", "**/*.test.tsx", "**/test/**", "**/tests/**", "**/e2e/**"],
8367
"rules": {
8468
"trigger-prisma/no-unbounded-list-filter": "off",
8569
"trigger-prisma/no-unbounded-list-filter-in-args-helper": "off"

apps/webapp/app/v3/runOpsMigration/track1-baseline.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"violations": [
8181
{
8282
"file": "apps/webapp/app/presenters/v3/ApiBatchResultsPresenter.server.ts",
83-
"line": 88,
83+
"line": 89,
8484
"model": "BatchTaskRun",
8585
"delegate": "batchTaskRun",
8686
"callKind": "read",
@@ -89,7 +89,7 @@
8989
},
9090
{
9191
"file": "apps/webapp/app/presenters/v3/ApiBatchResultsPresenter.server.ts",
92-
"line": 149,
92+
"line": 150,
9393
"model": "BatchTaskRun",
9494
"delegate": "batchTaskRun",
9595
"callKind": "read",
@@ -98,7 +98,7 @@
9898
},
9999
{
100100
"file": "apps/webapp/app/presenters/v3/ApiBatchResultsPresenter.server.ts",
101-
"line": 183,
101+
"line": 184,
102102
"model": "TaskRun",
103103
"delegate": "taskRun",
104104
"callKind": "read",
@@ -107,7 +107,7 @@
107107
},
108108
{
109109
"file": "apps/webapp/app/presenters/v3/ApiBatchResultsPresenter.server.ts",
110-
"line": 195,
110+
"line": 196,
111111
"model": "TaskRun",
112112
"delegate": "taskRun",
113113
"callKind": "read",

0 commit comments

Comments
 (0)