.vale.ini 648 B

123456789101112131415161718192021
  1. StylesPath = .vale/styles
  2. Vocab = General, Data
  3. MinAlertLevel = suggestion
  4. Packages = Google
  5. [*.rst]
  6. # HACK(@bveeramani): I have no clue why we need to include `(:class:`.*`)` in addition
  7. # to `(:.*:`.*`)`, but we get false positives if we don't. `TokenIgnores` is weird.
  8. TokenIgnores = (:class:`.*`)|(:.*:`.*`)|(`.*`)
  9. [*.{md,rst}]
  10. BasedOnStyles = Vale, Google
  11. # We're disabling "Colons" because we disagree with Google's suggestion to lowercase the
  12. # first word after a colon.
  13. Google.Colons = No
  14. # TODO(@bveeramani): We're temporarily disabling "Heading". In the future, we'll update
  15. # all headings and enable this rule.
  16. Google.Headings = No