Skip to content
Open
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
make check less broad
  • Loading branch information
briangregoryholmes committed Jan 27, 2026
commit 1edc35f79a71082ad64211d850e16590cafa98ef
8 changes: 0 additions & 8 deletions eslint-plugin-rill/no-disallowed-tailwind-text-colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ export default {
const sourceCode = context.sourceCode ?? context.getSourceCode();

return {
// Check string literals in JS/TS
Literal(node) {
reportAllMatches(node.value, context, node);
},
// Check template literals
TemplateElement(node) {
reportAllMatches(node.value.raw, context, node);
},
// Check Svelte HTML attributes (class="...")
SvelteAttribute(node) {
if (node.key?.name === "class") {
Expand Down
Loading