Skip to content

Commit e6a6f05

Browse files
committed
fix: update task labels and commands in tasks.json for clarity and consistency
1 parent 7795359 commit e6a6f05

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.vscode/tasks.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558 for the documentation about the tasks.json format
32
"version": "2.0.0",
43
"tasks": [
54
{
6-
"label": "FOP",
5+
"label": "FOP: Sort src/",
76
"type": "shell",
8-
"command": "./tools/FOP.py",
9-
"detail": "Menjalankan script Filter Optimization Python."
7+
"command": "fop -n src/",
8+
"detail": "Run Filter Orderer and Preener (Rust) on src/."
109
},
1110
{
12-
"label": "Generate",
11+
"label": "Build: All subscriptions",
1312
"type": "shell",
14-
"command": "./build.sh",
13+
"command": "bash build.sh",
1514
"group": {
1615
"kind": "build",
1716
"isDefault": true
1817
},
19-
"detail": "Membangun filter secara otomatis.",
18+
"detail": "Build all filter subscriptions locally."
2019
},
2120
{
22-
"label": "validate host",
21+
"label": "Lint: Dead domains",
2322
"type": "shell",
24-
"command": "./tools/validatehost.sh",
25-
"detail": "Memvalidasi host filter."
23+
"command": "dead-domains-linter -i subscriptions/abpindo.txt --export src/dead_domains.txt",
24+
"detail": "Check abpindo.txt for dead domains and export results."
2625
}
2726
]
2827
}

0 commit comments

Comments
 (0)