Skip to content

Commit dc53f79

Browse files
style: Improve formatting and consistency in HTML and YAML files
1 parent c8d3245 commit dc53f79

5 files changed

Lines changed: 11 additions & 33 deletions

File tree

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Ex: docs: add installation procedure
3636

3737
style:
3838

39-
Changes that do not impact the code (formatting, indentation, eslint, prettier).
39+
Changes that do not impact the code (formatting, indentation, prettier).
4040
Ex: style: fix formatting
4141

4242
test:

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
# Triggers the workflow on tag push only
77
push:
88
tags:
9-
- 'v*'
9+
- "v*"
1010

1111
# Allows you to run this workflow manually from the Actions tab
1212
workflow_dispatch:
@@ -73,9 +73,6 @@ jobs:
7373
- name: Install Node dependencies
7474
run: npm install
7575

76-
- name: Check lint
77-
run: npm run lint
78-
7976
- name: Run unit tests (Linux only)
8077
if: matrix.platform == 'ubuntu-22.04'
8178
uses: GabrielBB/xvfb-action@v1

angular.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,6 @@
9494
"styles": ["src/styles.scss"],
9595
"scripts": []
9696
}
97-
},
98-
"lint": {
99-
"builder": "@angular-eslint/builder:lint",
100-
"options": {
101-
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
102-
}
10397
}
10498
}
10599
}

package.json

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
"tauri:bundle": "tauri build",
1414
"test": "ng test --watch=false",
1515
"test:watch": "ng test",
16-
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
17-
"lint": "ng lint"
16+
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
1817
},
1918
"private": true,
2019
"dependencies": {
@@ -34,11 +33,6 @@
3433
"zone.js": "0.16.0"
3534
},
3635
"devDependencies": {
37-
"@angular-eslint/builder": "21.0.1",
38-
"@angular-eslint/eslint-plugin": "21.0.1",
39-
"@angular-eslint/eslint-plugin-template": "21.0.1",
40-
"@angular-eslint/schematics": "21.0.1",
41-
"@angular-eslint/template-parser": "21.0.1",
4236
"@angular/build": "^21.0.2",
4337
"@angular/cli": "21.0.2",
4438
"@angular/compiler-cli": "21.0.3",
@@ -48,13 +42,7 @@
4842
"@types/jasmine": "5.1.13",
4943
"@types/jasminewd2": "2.0.13",
5044
"@types/node": "24.10.1",
51-
"@typescript-eslint/eslint-plugin": "8.48.1",
52-
"@typescript-eslint/parser": "8.48.1",
5345
"conventional-changelog-cli": "5.0.0",
54-
"eslint": "9.39.1",
55-
"eslint-plugin-import": "2.32.0",
56-
"eslint-plugin-jsdoc": "61.4.1",
57-
"eslint-plugin-prefer-arrow": "1.2.3",
5846
"jasmine-core": "5.13.0",
5947
"jasmine-spec-reporter": "7.0.0",
6048
"karma": "6.4.4",

src/app/shared/components/repos-panel/repos-panel.component.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ <h3>Select Repositories to Monitor</h3>
2727
[class.expanded]="ownerAcc.expanded"
2828
>
2929
<span class="accordion-icon">{{ ownerAcc.expanded ? "▼" : "▶" }}</span>
30-
<i [class]="'owner-icon ti ' + (ownerAcc.owner.is_user ? 'ti-user' : 'ti-building')"></i>
30+
<i
31+
[class]="
32+
'owner-icon ti ' +
33+
(ownerAcc.owner.is_user ? 'ti-user' : 'ti-building')
34+
"
35+
></i>
3136
<span class="owner-name">{{ ownerAcc.owner.name }}</span>
3237
<span class="owner-badge" *ngIf="ownerAcc.loaded">
3338
{{ getSelectedCountForOwner(ownerAcc) }}/{{ ownerAcc.repos.length }}
@@ -43,16 +48,10 @@ <h3>Select Repositories to Monitor</h3>
4348
class="accordion-actions"
4449
*ngIf="ownerAcc.loaded && ownerAcc.repos.length > 0"
4550
>
46-
<button
47-
class="small-btn"
48-
(click)="onSelectAll(ownerAcc, $event)"
49-
>
51+
<button class="small-btn" (click)="onSelectAll(ownerAcc, $event)">
5052
Select All
5153
</button>
52-
<button
53-
class="small-btn"
54-
(click)="onSelectNone(ownerAcc, $event)"
55-
>
54+
<button class="small-btn" (click)="onSelectNone(ownerAcc, $event)">
5655
Select None
5756
</button>
5857
</div>

0 commit comments

Comments
 (0)