Skip to content

Commit 508fd14

Browse files
committed
chore: reformat
1 parent 7e35153 commit 508fd14

29 files changed

Lines changed: 47 additions & 100 deletions

File tree

.agents/skills/skill-creator/agents/comparator.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,20 @@ You receive these parameters in your prompt:
3939
Based on the task, generate a rubric with two dimensions:
4040

4141
**Content Rubric** (what the output contains):
42-
| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |
43-
|-----------|----------|----------------|---------------|
44-
| Correctness | Major errors | Minor errors | Fully correct |
45-
| Completeness | Missing key elements | Mostly complete | All elements present |
46-
| Accuracy | Significant inaccuracies | Minor inaccuracies | Accurate throughout |
42+
43+
| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |
44+
| ------------ | ------------------------ | ------------------ | -------------------- |
45+
| Correctness | Major errors | Minor errors | Fully correct |
46+
| Completeness | Missing key elements | Mostly complete | All elements present |
47+
| Accuracy | Significant inaccuracies | Minor inaccuracies | Accurate throughout |
4748

4849
**Structure Rubric** (how the output is organized):
49-
| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |
50-
|-----------|----------|----------------|---------------|
51-
| Organization | Disorganized | Reasonably organized | Clear, logical structure |
52-
| Formatting | Inconsistent/broken | Mostly consistent | Professional, polished |
53-
| Usability | Difficult to use | Usable with effort | Easy to use |
50+
51+
| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |
52+
| ------------ | ------------------- | -------------------- | ------------------------ |
53+
| Organization | Disorganized | Reasonably organized | Clear, logical structure |
54+
| Formatting | Inconsistent/broken | Mostly consistent | Professional, polished |
55+
| Usability | Difficult to use | Usable with effort | Easy to use |
5456

5557
Adapt criteria to the specific task. For example:
5658

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3266,6 +3266,7 @@ await compiled.invoke({
32663266
<summary> <strong>Internal Changes</strong> </summary>
32673267
32683268
- chore(build): Fix incorrect versions after merge ([#18154](https://github.com/getsentry/sentry-javascript/pull/18154))
3269+
32693270
</details>
32703271
32713272
## 10.24.0
@@ -3294,6 +3295,7 @@ await compiled.invoke({
32943295
- chore(eslint): Add eslint-plugin-regexp rule (dev-packages) ([#18063](https://github.com/getsentry/sentry-javascript/pull/18063))
32953296
- test(next): fix flakey tests ([#18100](https://github.com/getsentry/sentry-javascript/pull/18100))
32963297
- test(node-core): Proof that withMonitor doesn't create a new trace ([#18057](https://github.com/getsentry/sentry-javascript/pull/18057))
3298+
32973299
</details>
32983300
32993301
## 10.23.0

dev-packages/e2e-tests/test-applications/angular-17/src/app/app.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import { RouterOutlet } from '@angular/router';
55
selector: 'app-root',
66
standalone: true,
77
imports: [RouterOutlet],
8-
template: `
9-
<router-outlet></router-outlet>
10-
`,
8+
template: ` <router-outlet></router-outlet> `,
119
})
1210
export class AppComponent {
1311
title = 'angular-17';

dev-packages/e2e-tests/test-applications/angular-17/src/app/cancel/cancel.components.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { Component } from '@angular/core';
33
@Component({
44
selector: 'app-cancel',
55
standalone: true,
6-
template: `
7-
<div></div>
8-
`,
6+
template: ` <div></div> `,
97
})
108
export class CancelComponent {}

dev-packages/e2e-tests/test-applications/angular-17/src/app/sample-component/sample-component.components.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import { Component, OnInit } from '@angular/core';
33
@Component({
44
selector: 'app-sample-component',
55
standalone: true,
6-
template: `
7-
<div></div>
8-
`,
6+
template: ` <div></div> `,
97
})
108
export class SampleComponent implements OnInit {
119
ngOnInit() {

dev-packages/e2e-tests/test-applications/angular-18/src/app/app.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import { RouterOutlet } from '@angular/router';
55
selector: 'app-root',
66
standalone: true,
77
imports: [RouterOutlet],
8-
template: `
9-
<router-outlet></router-outlet>
10-
`,
8+
template: ` <router-outlet></router-outlet> `,
119
})
1210
export class AppComponent {
1311
title = 'angular-18';

dev-packages/e2e-tests/test-applications/angular-18/src/app/cancel/cancel.components.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { Component } from '@angular/core';
33
@Component({
44
selector: 'app-cancel',
55
standalone: true,
6-
template: `
7-
<div></div>
8-
`,
6+
template: ` <div></div> `,
97
})
108
export class CancelComponent {}

dev-packages/e2e-tests/test-applications/angular-18/src/app/component-tracking/component-tracking.components.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ import { SampleComponent } from '../sample-component/sample-component.components
66
selector: 'app-cancel',
77
standalone: true,
88
imports: [TraceModule, SampleComponent],
9-
template: `
10-
<app-sample-component [trace]="'sample-component'"></app-sample-component>
11-
`,
9+
template: ` <app-sample-component [trace]="'sample-component'"></app-sample-component> `,
1210
})
1311
@TraceClass({ name: 'ComponentTrackingComponent' })
1412
export class ComponentTrackingComponent implements OnInit, AfterViewInit {

dev-packages/e2e-tests/test-applications/angular-18/src/app/sample-component/sample-component.components.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import { Component, OnInit } from '@angular/core';
33
@Component({
44
selector: 'app-sample-component',
55
standalone: true,
6-
template: `
7-
<div>Component</div>
8-
`,
6+
template: ` <div>Component</div> `,
97
})
108
export class SampleComponent implements OnInit {
119
ngOnInit() {

dev-packages/e2e-tests/test-applications/angular-19/src/app/app.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import { RouterOutlet } from '@angular/router';
55
selector: 'app-root',
66
standalone: true,
77
imports: [RouterOutlet],
8-
template: `
9-
<router-outlet></router-outlet>
10-
`,
8+
template: ` <router-outlet></router-outlet> `,
119
})
1210
export class AppComponent {
1311
title = 'angular-19';

0 commit comments

Comments
 (0)