diff --git a/.eslintignore b/.eslintignore
index e65cf5af0..ab3567b8f 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -4,6 +4,5 @@
public/build/bundle.js
scripts/build-glean-metadata.js
src/ga.js
-src/Tailwindcss.svelte
storybook-static/*
venv/*
diff --git a/.eslintrc.js b/.eslintrc.js
index fce748cb7..d19656888 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -53,12 +53,19 @@ module.exports = {
"import/no-duplicates": "off",
"import/no-mutable-exports": "off",
"import/no-unresolved": "off",
-
// Temporarily work around a bug in eslint-plugin-svelte3.
//
// https://github.com/sveltejs/eslint-plugin-svelte3/issues/41#issuecomment-572503966
"no-multiple-empty-lines": ["error", { max: 2, maxBOF: 2, maxEOF: 0 }],
},
+
+ // Eslint only allows regular CSS inside
-
{message}