Skip to content

Commit

Permalink
Attempt to fix mkdocs deployment bug (#488)
Browse files Browse the repository at this point in the history
* Added __init__.py file and updated frontend.md

* Ignored frontend.md in .stylelintrc.json

* Ignore all md files in mkdocs folder for linting

* Ignore all md files and patterns in mkdocs folder for linting

* Ignore all md patterns in mkdocs folder for linting

* Updated .stylelintrc.json

* Updated .stylelintrc.json

* Updated .stylelintrc.json

* Updated .stylelintrc.json

* Updated linter.yml
  • Loading branch information
bzzz-coding authored Jan 24, 2024
1 parent 17099f6 commit e90c58c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/linters/.stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"ignoreFiles": ["../../frontend/src/components/_normalize.scss"]
"ignoreFiles": [
"../../frontend/src/components/_normalize.scss"
],
"ignorePatterns": ["*.md"]
}
1 change: 1 addition & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
VALIDATE_ALL_CODEBASE: ${{ (github.event_name == 'workflow_dispatch' && true) || false }}
VALIDATE_HTML: false
VALIDATE_MARKDOWN: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_PYTHON: false
VALIDATE_PYTHON_BLACK: false
VALIDATE_PYTHON_FLAKE8: false
Expand Down
2 changes: 1 addition & 1 deletion mkdocs/docs/developer/frontend.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ _<p style="text-align: center;">Frontend Architecture</p>_

## Summary

**Frontend Tech Stack**: React, Babel, webpack, Jest, React Testing Library, HTML, SCSS, JS
**Frontend Tech Stack**: React, Babel, webpack, Jest, React Testing Library, HTML, SCSS, JS, TailwindCSS

The over ninety percent of our frontend architecture is housed in our `frontend/` directory. This directory is a [Django app](https://docs.djangoproject.com/en/3.2/intro/tutorial01/), which is a set of files that can be ported to any Django-based application.

Expand Down
Empty file.

0 comments on commit e90c58c

Please sign in to comment.