You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import eslintConfigPrettier from "eslint-config-prettier";
/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ["**/*.{js,mjs,cjs,ts}"] },
{
languageOptions: { globals: globals.browser },
rules: {
camelcase: "error",
"comma-dangle": ["error", "always-multiline"],
},
},
// Enforce trailing commas in multiline 'curly': ['error', 'all'], // Require curly braces for all control statements 'no-console': 'warn', // Warn about console.log usage },},