-
Notifications
You must be signed in to change notification settings - Fork 0
ci(frontend): make checks deterministic #71
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
Changes from 3 commits
a27c3c7
e04a0be
7748771
afc91a2
49a833b
2e47424
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,29 @@ | ||
| { | ||
| "$schema": "https://biomejs.dev/schemas/2.4.9/schema.json", | ||
| "$schema": "https://biomejs.dev/schemas/2.5.5/schema.json", | ||
| "files": { | ||
| "includes": ["**/resources/ts/**/*.ts"] | ||
| "includes": [ | ||
| "resources/**/*.ts", | ||
| "resources/**/*.js", | ||
| "resources/**/*.css", | ||
| "tests/**/*.ts", | ||
| "tests/**/*.js", | ||
| "playwright.config.ts" | ||
| ] | ||
| }, | ||
|
Comment on lines
+4
to
5
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Files:"
git ls-files | sed -n '1,200p'
echo
echo "biome.json:"
if [ -f biome.json ]; then cat -n biome.json | sed -n '1,220p'; fi
echo
echo "Search for files.includes / lint / check:"
rg -n '"files"|"includes"|"biome check"|lint|formatter' -S . --glob '!node_modules/**' --glob '!dist/**' --glob '!build/**' | sed -n '1,240p'Repository: oszuidwest/teksttv-wp-plugin Length of output: 8170 🌐 Web query:
💡 Result: In Biome, the Citations:
Include the maintainer configuration files in Biome’s coverage.
🤖 Prompt for AI Agents |
||
| "linter": { | ||
| "enabled": true, | ||
| "rules": { | ||
| "recommended": true, | ||
| "preset": "recommended", | ||
| "complexity": { | ||
| "noForEach": "off", | ||
| "noImportantStyles": "off", | ||
| "useOptionalChain": "off" | ||
| }, | ||
| "correctness": { | ||
| "noUnusedVariables": "warn" | ||
| }, | ||
| "style": { | ||
| "noDescendingSpecificity": "off", | ||
| "useTemplate": "off" | ||
| } | ||
| } | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| @import './partials/base.css'; | ||
| @import './partials/settings.css'; | ||
| @import './partials/blocks.css'; | ||
| @import './partials/post-meta.css'; | ||
| @import './partials/preview.css'; | ||
| @import './partials/ticker.css'; | ||
| @import './partials/audit.css'; | ||
| @import "./partials/base.css"; | ||
| @import "./partials/settings.css"; | ||
| @import "./partials/blocks.css"; | ||
| @import "./partials/post-meta.css"; | ||
| @import "./partials/preview.css"; | ||
| @import "./partials/ticker.css"; | ||
| @import "./partials/audit.css"; |
Uh oh!
There was an error while loading. Please reload this page.