-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmise.toml
More file actions
40 lines (34 loc) · 851 Bytes
/
Copy pathmise.toml
File metadata and controls
40 lines (34 loc) · 851 Bytes
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
[tools]
node = "lts"
# Format tools
editorconfig-checker = "latest"
"npm:prettier" = "latest"
"npm:v8r" = "latest"
# Lint tools
ruby = "latest"
"gem:rubocop" = "latest"
"npm:cspell" = "latest"
# Security tools
"npm:secretlint" = "latest"
"npm:@secretlint/secretlint-rule-preset-recommend" = "latest"
syft = "latest"
trivy = "latest"
trufflehog = "latest"
checkov = "latest"
# KICS uses official GitHub Action in CI
grype = "latest"
gitleaks = "latest"
[tasks.format]
description = "Format all files with prettier"
run = "prettier --write ."
[tasks.format-check]
description = "Check formatting without changes"
run = "prettier --check ."
[tasks.lint]
description = "Run all linters"
depends = ["format-check"]
run = "echo 'All lint checks passed'"
[tasks.check]
description = "Run all checks"
depends = ["lint"]
run = "echo 'All checks passed'"