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

Attempt to fix mkdocs deployment bug #488

Merged
merged 10 commits into from
Jan 24, 2024
5 changes: 4 additions & 1 deletion .github/linters/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check warning on line 1 in .github/linters/.stylelintrc.json

View workflow job for this annotation

GitHub Actions / Lint Code Base

File ignored by default.
"rules": {
"selector-class-pattern": null
},
Expand All @@ -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.