This commit is contained in:
Pablo Martin 2025-06-04 17:06:54 +02:00
parent c44d00c625
commit a561131d0c
1260 changed files with 295975 additions and 0 deletions

View file

@ -0,0 +1,26 @@
import js from "@eslint/js";
import globals from "globals";
import { defineConfig } from "eslint/config";
import stylisticJs from "@stylistic/eslint-plugin-js";
export default defineConfig([
{
files: ["**/*.{js,mjs,cjs}"],
plugins: { js },
extends: ["js/recommended"],
},
{ files: ["**/*.js"], languageOptions: { sourceType: "commonjs" } },
{
files: ["**/*.{js,mjs,cjs}"],
languageOptions: { globals: globals.browser },
},
{
plugins: { "@stylistic/js": stylisticJs },
rules: {
"@stylistic/js/indent": ["error", 2],
"@stylistic/js/linebreak-style": ["error", "unix"],
"@stylistic/js/quotes": ["error", "single"],
"@stylistic/js/semi": ["error", "never"],
},
},
]);