Skip to content

Commit

Permalink
Fix yamllint issues
Browse files Browse the repository at this point in the history
The yamllint config file was incorrect, which meant that several
issues were not flagged properly.
  • Loading branch information
tbm committed Nov 19, 2020
1 parent f95faf5 commit f1b51b5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
40 changes: 20 additions & 20 deletions .pyspelling.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
spellchecker: aspell

matrix:
- name: markdown
default_encoding: utf-8
sources:
- "**/*.md"
pipeline:
- pyspelling.filters.markdown:
markdown_extensions:
- markdown.extensions.extra:
- pyspelling.filters.html:
comments: true
ignores:
- code
- pre
- pyspelling.filters.url:
aspell:
lang: en
dictionary:
encoding: utf-8
wordlists:
- .aspell.en.pws
- name: markdown
default_encoding: utf-8
sources:
- "**/*.md"
pipeline:
- pyspelling.filters.markdown:
markdown_extensions:
- markdown.extensions.extra:
- pyspelling.filters.html:
comments: true
ignores:
- code
- pre
- pyspelling.filters.url:
aspell:
lang: en
dictionary:
encoding: utf-8
wordlists:
- .aspell.en.pws
8 changes: 6 additions & 2 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
document-start: disable
line-length: disable
extends: default

rules:
document-start: disable
line-length: disable
truthy: disable
2 changes: 0 additions & 2 deletions tests/bug237.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

payee_split:
- (?<payee>.*)

narration_tag: thing

0 comments on commit f1b51b5

Please sign in to comment.