-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtasks.json
More file actions
95 lines (95 loc) · 2.81 KB
/
tasks.json
File metadata and controls
95 lines (95 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: lint-js",
"type": "npm",
"script": "lint:js",
"detail": "Lints JavaScript/TypeScript files using ESLint."
},
{
"label": "npm: lint-css",
"type": "npm",
"script": "lint:css",
"detail": "Lints CSS/SCSS files using Stylelint."
},
{
"label": "npm: lint-md",
"type": "npm",
"script": "lint:md",
"detail": "Lints Markdown files using markdownlint."
},
{
"label": "npm: lint-yaml",
"type": "npm",
"script": "lint:yaml",
"detail": "Lints YAML files using Spectral."
},
{
"label": "npm: format-js",
"type": "npm",
"script": "format:js",
"detail": "Formats JS/TS/JSON files using Prettier and ESLint."
},
{
"label": "npm: format-css",
"type": "npm",
"script": "format:css",
"detail": "Formats CSS/SCSS files using Prettier and Stylelint."
},
{
"label": "npm: format-md",
"type": "npm",
"script": "format:md",
"detail": "Formats Markdown files using Prettier and markdownlint."
},
{
"label": "npm: format",
"type": "npm",
"script": "format",
"detail": "Formats all supported files using Prettier, Stylelint, and markdownlint."
},
{
"label": "npm: lint",
"type": "npm",
"script": "lint",
"detail": "Runs all lint tasks (js, css, yaml, pkg-json)."
},
{
"label": "npm: lint-all",
"type": "npm",
"script": "lint:all",
"detail": "Runs all lint tasks and markdownlint."
},
{
"label": "npm: lint-workflows",
"type": "npm",
"script": "lint:workflows",
"detail": "Lints GitHub workflow YAML files using Spectral."
},
{
"label": "npm: lint-pkg-json",
"type": "npm",
"script": "lint:pkg-json",
"detail": "Lints package.json files using npmPkgJsonLint."
},
{
"label": "npm: test-js",
"type": "npm",
"script": "test:js",
"detail": "Runs Jest unit tests with coverage."
},
{
"label": "npm: test",
"type": "npm",
"script": "test",
"detail": "Runs all tests."
},
{
"label": "npm: test-coverage",
"type": "npm",
"script": "test:js",
"detail": "Runs Jest unit tests with coverage."
}
]
}