Skip to content

Commit fbed405

Browse files
author
Luke Sneeringer
authoredOct 31, 2019
[feat] Linter documentation in GitHub Pages. (#263)
This (incredibly large) PR adds a `docs/` directory that we can serve with GitHub Pages. It provides documentation for three linter rules; the remainder will come in follow-up PRs. Note that as part of this, I intend to enforce (and soon lint for) some consistency on linter rules, including: - One rule per file. - The rule's filename must be derived from the rule name (converting `-` to `_` but no other changes). This is to make things like "View Implmenetation" easy.
1 parent ec6f0ba commit fbed405

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+13661
-49
lines changed
 

‎.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
.idea
2-
.vscode
2+
.vscode
3+
4+
# Jekyll
5+
docs/default.profraw
6+
docs/_site
7+
docs/.jekyll-metadata

‎docs/.dockerignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Version control scaffolding
2+
.git
3+
.gitignore
4+
5+
# Docker scaffolding
6+
Dockerfile
7+
.dockerignore
8+
9+
# Ruby & Jekyll scaffolding
10+
_site
11+
12+
# Translations
13+
*.mo
14+
15+
# Mac
16+
.DS_Store
17+
18+
# Mr Developer
19+
.mr.developer.cfg
20+
.project
21+
.pydevproject
22+
23+
# JetBrains
24+
.idea
25+
26+
# Built documentation
27+
docs/_build
28+
docs/_build_doc2dash
29+
30+
# Virtual environment
31+
env/
32+
coverage.xml
33+
34+
# Jekyll metadata
35+
.jekyll-metadata

0 commit comments

Comments
 (0)
Please sign in to comment.