mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 16:44:19 +08:00
Add a prose linter that runs on docs content changes and a basic config. Linter only lints changed lines, and it will fail on error. For now, this is not a mandatory check because we expect a lot of false positives while we tweak the linter to suit our conventions.
10 lines
191 B
YAML
10 lines
191 B
YAML
extends: existence
|
|
message: "In general, don't use an ellipsis."
|
|
link: 'https://developers.google.com/style/ellipses'
|
|
nonword: true
|
|
level: warning
|
|
action:
|
|
name: remove
|
|
tokens:
|
|
- '\.\.\.'
|