mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
14 lines
255 B
YAML
14 lines
255 B
YAML
|
extends: existence
|
|||
|
message: "Use an en dash in a range of numbers."
|
|||
|
link: https://docs.microsoft.com/en-us/style-guide/numbers
|
|||
|
nonword: true
|
|||
|
level: error
|
|||
|
action:
|
|||
|
name: edit
|
|||
|
params:
|
|||
|
- replace
|
|||
|
- '-'
|
|||
|
- '–'
|
|||
|
tokens:
|
|||
|
- '\b\d+\s?[-]\s?\d+\b'
|