-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.vale.ini
More file actions
32 lines (25 loc) · 854 Bytes
/
.vale.ini
File metadata and controls
32 lines (25 loc) · 854 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
StylesPath = .vale/styles
MinAlertLevel = warning
[formats]
mdx = md
[docs/**/*.md]
BasedOnStyles = Infrahub
;(import.*?\n) to ignore import statement in .mdx
;(```.*?```\n) to ignore code block in .mdx
BlockIgnores = (?s) *((import.*?\n)|(```.*?```\n))
[*.toml]
# Ignore all rules for toml files, to prevent false positives
# in files like pyproject.toml
BasedOnStyles =
[*.yml]
# Ignore all rules for yaml files, to prevent false positives
# in files for GitHub Actions or other CI/CD configurations
BasedOnStyles =
[*]
BasedOnStyles = Infrahub
# Generated API reference docs: use GeneratedRef spelling (allows snake_case)
# instead of global Infrahub spelling. Must be last to override [*].
[docs/docs/python-sdk/sdk_ref/**/*.mdx]
BasedOnStyles = Infrahub, GeneratedRef
Infrahub.spelling = NO
BlockIgnores = (?s) *((import.*?\n)|(```.*?```\n))