Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ ignore: |
**/package-lock.json
**/yarn.lock

# Rails fixtures are ERB TEMPLATES, not YAML documents. campfire's
# test/fixtures/users.yml opens with
# <% password_digest = BCrypt::Password.create("secret123456") %>
# and only becomes valid YAML after Rails renders it, so yamllint
# reports a hard syntax error and always will. The ActionText fixtures
# alongside them are HTML blobs that tests assert on byte-for-byte, so
# rewrapping their long lines would be a test change, not a formatting
# change. Seven files in that repo are ERB-templated YAML; the others
# only parse because their ERB happens to sit inside quoted scalars,
# which is luck rather than correctness.
test/fixtures/
**/test/fixtures/

rules:
# 140-char limit. Workflow files have legitimately long shell URLs
# (the actionlint download script, action references) and issue-
Expand Down
Loading