-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from facelessuser/better-vc-check
Quicker VC check
- Loading branch information
Showing
26 changed files
with
274 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
matrix: | ||
- name: settings | ||
sources: | ||
- '**/*.sublime-settings' | ||
hunspell: | ||
d: en_US | ||
aspell: | ||
lang: en | ||
dictionary: | ||
wordlists: | ||
- docs/src/dictionary/en-custom.txt | ||
output: build/dictionary/settings.dic | ||
pipeline: | ||
- pyspelling.filters.cpp: | ||
prefix: 'st' | ||
generic_mode: true | ||
group_comments: true | ||
line_comments: false | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
escapes: '\\[\\`]' | ||
delimiters: | ||
# Ignore multiline content between fences (fences can have 3 or more back ticks) | ||
# ``` | ||
# content | ||
# ``` | ||
- open: '(?s)^(?P<open> *`{3,})$' | ||
close: '^(?P=open)$' | ||
# Ignore text between inline back ticks | ||
- open: '(?P<open>`+)' | ||
close: '(?P=open)' | ||
- pyspelling.filters.url: | ||
|
||
- name: mkdocs | ||
sources: | ||
- site/**/*.html | ||
hunspell: | ||
d: en_US | ||
aspell: | ||
lang: en | ||
dictionary: | ||
wordlists: | ||
- docs/src/dictionary/en-custom.txt | ||
output: build/dictionary/mkdocs.dic | ||
pipeline: | ||
- pyspelling.filters.html: | ||
comments: false | ||
attributes: | ||
- title | ||
- alt | ||
ignores: | ||
- ':matches(code, pre)' | ||
- 'a:matches(.magiclink-compare, .magiclink-commit, .magiclink-repository)' | ||
- 'span.keys' | ||
- ':matches(.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon)' | ||
- pyspelling.filters.url: | ||
|
||
- name: markdown | ||
sources: | ||
- readme.md | ||
hunspell: | ||
d: en_US | ||
aspell: | ||
lang: en | ||
dictionary: | ||
wordlists: | ||
- docs/src/dictionary/en-custom.txt | ||
output: build/dictionary/markdown.dic | ||
pipeline: | ||
- pyspelling.filters.markdown: | ||
- pyspelling.filters.html: | ||
comments: false | ||
attributes: | ||
- title | ||
- alt | ||
ignores: | ||
- ':matches(code, pre)' | ||
- pyspelling.filters.url: | ||
|
||
- name: python | ||
hidden: true | ||
sources: | ||
- './**/*.py' | ||
hunspell: | ||
d: en_US | ||
aspell: | ||
lang: en | ||
dictionary: | ||
wordlists: | ||
- docs/src/dictionary/en-custom.txt | ||
output: build/dictionary/python.dic | ||
pipeline: | ||
- pyspelling.filters.python: | ||
group_comments: true | ||
- pyspelling.flow_control.wildcard: | ||
allow: | ||
- py-comment | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
delimiters: | ||
# Ignore lint (noqa) and coverage (pragma) as well as shebang (#!) | ||
- open: '^(?: *(?:noqa\b|pragma: no cover)|!)' | ||
close: '$' | ||
# Ignore Python encoding string -*- encoding stuff -*- | ||
- open: '^ *-\*-' | ||
close: '-\*-$' | ||
- pyspelling.filters.context: | ||
context_visible_first: true | ||
escapes: '\\[\\`]' | ||
delimiters: | ||
# Ignore multiline content between fences (fences can have 3 or more back ticks) | ||
# ``` | ||
# content | ||
# ``` | ||
- open: '(?s)^(?P<open> *`{3,})$' | ||
close: '^(?P=open)$' | ||
# Ignore text between inline back ticks | ||
- open: '(?P<open>`+)' | ||
close: '(?P=open)' | ||
- pyspelling.filters.url: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ http://facelessuser.github.io/EasyDiff/ | |
# License | ||
EasyDiff is released under the MIT license. | ||
|
||
Copyright (c) 2013 - 2015 Isaac Muse <[email protected]> | ||
Copyright (c) 2013 - 2018 Isaac Muse <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ Ctrl | |
DeltaWalker | ||
EasyDiff | ||
EasyDiff's | ||
EmojiOne | ||
Feb | ||
MERCHANTABILITY | ||
MkDocs | ||
|
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--8<-- | ||
links.txt | ||
abbr.txt | ||
--8<-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
EasyDiff is released under the MIT license. | ||
|
||
Copyright (c) 2013 - 2017 Isaac Muse <[email protected]> | ||
Copyright (c) 2013 - 2018 Isaac Muse <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.