koboprice/eslint.config.js
2024-07-14 16:49:40 +03:00

23 lines
465 B
JavaScript

import js from "@eslint/js";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
import globals from "globals";
export default [
{
ignores: ["dist"]
},
{
...js.configs.recommended,
...eslintPluginPrettierRecommended,
rules: {
"no-unused-vars": "warn",
"no-undef": "warn",
},
languageOptions: {
globals: {
...globals.browser,
l: "readonly",
},
},
},
];