Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
7824584
Use latest ubuntu
ugifractal Sep 4, 2025
e945335
Use target arch
ugifractal Sep 4, 2025
2f06760
Increase nvm version
ugifractal Sep 4, 2025
3b5008f
Merge branch 'main' into improve-docker-pre-commit
jbampton Sep 5, 2025
805ab58
Fix run layers
ugifractal Sep 7, 2025
682dc26
Merge branch 'main' into improve-docker-pre-commit
jbampton Sep 7, 2025
abdd5a6
* Fix Dockerfile with separate user
Subham-KRLX Sep 7, 2025
d00a9a3
Super-Linter CSS errors (#572)
anufdo Sep 8, 2025
42858f4
Fix 404 not found page (#578)
jbampton Sep 8, 2025
fd7ef14
Remove duplicate npm-ci hook; refactor local hooks (#580)
jbampton Sep 9, 2025
4580149
Natural language fixes in Markdown files (#581)
jbampton Sep 9, 2025
7cd1e44
Update prettierignore and run (#582)
jbampton Sep 9, 2025
03574fb
pre-commit prettier check JS files (#587)
jbampton Sep 9, 2025
7719163
Add eslint ignore for the Sphinx doc folder (#589)
jbampton Sep 9, 2025
743e0c2
Update README.md add Cloudflare Pages status button (#590)
jbampton Sep 9, 2025
a8a234b
Update README.md fix read the docs button link (#591)
jbampton Sep 9, 2025
506484e
Add ribbon.png asset and update base.njk layout (#537)
GauriMalge Sep 9, 2025
e3f5240
Create .deepsource.toml (#598)
jbampton Sep 10, 2025
7cc995b
Update .deepsource.toml (#600)
jbampton Sep 10, 2025
131083a
Update .deepsource.toml (#601)
jbampton Sep 10, 2025
fe40d3e
Fix conflict
ugifractal Sep 11, 2025
ea48ec0
add pipefail
ugifractal Sep 11, 2025
7a41cc7
add version
ugifractal Sep 11, 2025
d9db89f
add --no-cache
ugifractal Sep 11, 2025
4c6ba1c
Merge branch 'main' into improve-docker-pre-commit
ugifractal Sep 14, 2025
e177dbd
Merge branch 'main' into improve-docker-pre-commit
ugifractal Sep 15, 2025
2b46e57
Validate codecov.yml file with curl (#710)
jbampton Sep 15, 2025
6b58c14
Test Docker with GitHub Actions (#711)
jbampton Sep 15, 2025
39080eb
Update dprint.yml add name key with emoji value and title (#712)
jbampton Sep 16, 2025
81e2d86
Update codecov.yml set `require_changes: false` (#714)
jbampton Sep 16, 2025
0058dee
Update deploy-eleventy-site-on-pr.yml add name to job (#715)
jbampton Sep 16, 2025
62c0827
Configure codecov.yml add range update target (#713)
jbampton Sep 16, 2025
ece4ce0
Update `codecov.yml` add `flags` (#716)
jbampton Sep 16, 2025
66e0d03
Attempt to fix codecov PR comments (#718)
jbampton Sep 16, 2025
ce735eb
Create `super-linter.yml`: A combination of multiple linters to run a…
jbampton Sep 16, 2025
9ecaac5
merge main into improve-docker-pre-commit
ugifractal Sep 17, 2025
7162a9b
Merge remote-tracking branch 'upstream/main' into improve-docker-pre-…
ugifractal Sep 19, 2025
76c3fb5
Initial config for stylelint
ugifractal Sep 19, 2025
0062057
Fix newline
ugifractal Sep 19, 2025
e33a9a7
Merge branch 'improve-docker-pre-commit' into ci-fixes
ugifractal Sep 19, 2025
280f42b
add pinned version to coverage
ugifractal Sep 19, 2025
2cdfa38
pin coverage
ugifractal Sep 20, 2025
fe04173
pin version
ugifractal Sep 20, 2025
c8ff95e
run stylelint --fix
ugifractal Sep 20, 2025
a78cb73
coverage to use sha
ugifractal Sep 20, 2025
6a189b4
use sha
ugifractal Sep 20, 2025
007062d
use sha
ugifractal Sep 20, 2025
f5633e3
use sha
ugifractal Sep 20, 2025
1299248
permission change
ugifractal Sep 20, 2025
be570d5
supress labeler
ugifractal Sep 20, 2025
4c59f61
Merge remote-tracking branch 'upstream/main' into ci-fixes
ugifractal Sep 21, 2025
b758e01
Use incremental fixes
ugifractal Sep 22, 2025
d3fcee9
Selective linter
ugifractal Sep 22, 2025
040bf1e
Fix linter
ugifractal Sep 22, 2025
1188d45
run pre-commit
ugifractal Sep 22, 2025
2ea8554
Merge remote-tracking branch 'upstream/main' into fix-style-lint
ugifractal Sep 22, 2025
2b88496
Merge branch 'ci-fixes' into fix-style-lint
ugifractal Sep 22, 2025
dfff502
fix duplicate
ugifractal Sep 24, 2025
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
4 changes: 4 additions & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bundle.css
tailwind.css
./_site/assets
./_deploy/assets
Comment on lines +1 to +4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This ignore file has a couple of issues:

  1. tailwind.css is ignored. This seems to be the main source file for your Tailwind CSS (frontend/assets/tailwind.css), which contains custom CSS and should be linted. It's likely being ignored to prevent errors from Tailwind's custom at-rules, but the better solution is to configure Stylelint to understand them (as suggested for stylelint.config.js).
  2. The generated CSS file frontend/assets/styles/base.css is not being ignored. Generated files should typically be excluded from linting.

I suggest updating the ignore file to lint your source CSS and ignore the generated output.

bundle.css
frontend/assets/styles/base.css
./_site/assets
./_deploy/assets

Loading
Loading