Skip to content
Merged
Changes from all commits
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
9 changes: 9 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import eslintPlugin from "eslint-plugin-eslint-plugin";
import globals from "globals";
import json from "@eslint/json";
import { defineConfig, globalIgnores } from "eslint/config";
import css from "./src/index.js";

//-----------------------------------------------------------------------------
// Helpers
Expand Down Expand Up @@ -104,4 +105,12 @@ export default defineConfig([
language: "json/json",
extends: ["json/recommended"],
},
// This CSS configuration is mainly used to validate the `test.css` file for local testing.
{
name: "css/css",
plugins: { css },
files: ["**/*.css"],
language: "css/css",
extends: ["css/recommended"],
},
Comment thread
SwetaTanwar marked this conversation as resolved.
]);