Skip to content

Commit e9663bc

Browse files
committed
Lint config
1 parent 895e5bd commit e9663bc

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default tseslint.config(
1818
'special-pages/pages/**/public',
1919
'special-pages/pages/**/types',
2020
'special-pages/pages/**/messages',
21+
'special-pages/shared/types',
2122
'special-pages/playwright-report/',
2223
'special-pages/test-results/',
2324
'playwright-report',

special-pages/shared/types/shared.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ export type ReportMetricEvent = ExceptionMetric;
1212
* Requests, Notifications and Subscriptions from the Shared feature
1313
*/
1414
export interface SharedMessages {
15-
notifications: ReportMetricNotification;
15+
notifications: ReportMetricNotification;
1616
}
1717
/**
1818
* Generated from @see "../messages/reportMetric.notify.json"
1919
*/
2020
export interface ReportMetricNotification {
21-
method: 'reportMetric';
22-
params: ReportMetricEvent;
21+
method: "reportMetric";
22+
params: ReportMetricEvent;
2323
}
2424
export interface ExceptionMetric {
25-
metricName: 'exception';
26-
params: {
27-
message: string;
28-
};
25+
metricName: "exception";
26+
params: {
27+
message: string;
28+
};
2929
}

0 commit comments

Comments
 (0)