Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub linter #939

Merged
merged 33 commits into from
Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
576725f
Add super linter
tunetheweb Jun 29, 2020
dad0dab
Remove import errors from linter
tunetheweb Jun 29, 2020
b0b5de2
Temporarily remove MD files
tunetheweb Jun 29, 2020
cf346a8
Fix typo
tunetheweb Jun 29, 2020
49ec1e1
Disable import errors and CSS linting
tunetheweb Jun 29, 2020
1ece29e
Another attempt at ignoring imports
tunetheweb Jun 29, 2020
d4c67fa
Ignore know dependencies
tunetheweb Jun 29, 2020
5a41715
Re-enable CSS
tunetheweb Jun 29, 2020
40f00e9
Add CSS linting
tunetheweb Jun 29, 2020
2df7949
Tune CSS rules
tunetheweb Jun 29, 2020
1ab2bff
CSS tweaks
tunetheweb Jun 29, 2020
c612016
CSS tweaks
tunetheweb Jun 29, 2020
56fe144
More CSS Tweaks
tunetheweb Jun 29, 2020
734e988
More CSS Tweaks
tunetheweb Jun 29, 2020
1c19b1d
CSS Tweaks
tunetheweb Jun 29, 2020
067049a
Fix CSS
tunetheweb Jun 29, 2020
f170f0c
Add back some CSS rules
tunetheweb Jun 29, 2020
b0df910
CSS Tweaks
tunetheweb Jun 29, 2020
efcc96b
More CSS Tweaks
tunetheweb Jun 29, 2020
64c6222
Fixup CSS, Add MD
tunetheweb Jun 29, 2020
8e669bc
Markdown fixes
tunetheweb Jun 29, 2020
d931470
MArkdown fixes
tunetheweb Jun 29, 2020
76317b5
Fix markdown issues
tunetheweb Jun 29, 2020
036fc8e
Fix markup issues
tunetheweb Jun 29, 2020
b34ed09
Fix markdown issues
tunetheweb Jun 29, 2020
a0d17ff
Add Standard JS
tunetheweb Jun 29, 2020
358c3c4
Remove Standard as not configurable
tunetheweb Jun 29, 2020
2bd31e5
Review feedback
tunetheweb Jun 30, 2020
ab38529
Fix comment
tunetheweb Jun 30, 2020
ab4b659
Run action on push ot pull
tunetheweb Jun 30, 2020
b5c7fec
aImprove comments
tunetheweb Jun 30, 2020
c038e36
Improved comments
tunetheweb Jun 30, 2020
c0eb542
Improved comments
tunetheweb Jun 30, 2020
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
38 changes: 38 additions & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
###########################
###########################
## Markdown Linter rules ##
###########################
###########################

# Linter rules doc:
# - https://github.com/DavidAnson/markdownlint
#
# Note:
# To comment out a single error:
# <!-- markdownlint-disable -->
# any violations you want
# <!-- markdownlint-restore -->
#

###############
# Rules by id #
###############
MD004: false # Unordered list style
MD007: false # Allow extra spaces for lists - don't cause issues and will just annoy authors
MD009: false # Allow trailing spaces - don't cause issues and will just annoy authors
MD013: false # Don't demand maximum line lengths
MD024:
siblings_only: true # Allows sub-headings to be reused under different headings
MD026:
punctuation: ".,;:!。,;:" # List of not allowed
MD029: false # Ordered list item prefix
MD033: false # Allow inline HTML
MD034: false # Allow base URLs
MD036: false # Emphasis used instead of a heading
MD040: false # Don't demand language for all code blocks

#################
# Rules by tags #
#################
blank_lines: false # Error on blank lines
Loading