Files
karousel/eslint.config.mjs

16 lines
322 B
JavaScript
Raw Permalink Normal View History

2025-04-16 23:13:51 +02:00
// @ts-check
2025-04-17 20:24:26 +02:00
import tseslint from "typescript-eslint";
2025-04-16 23:13:51 +02:00
export default tseslint.config(
2025-04-17 20:24:26 +02:00
{
extends: [tseslint.configs.stylistic],
2025-04-17 20:55:03 +02:00
rules: {
"@typescript-eslint/no-empty-function": "off",
"semi": "error",
2025-09-07 14:38:47 +02:00
"comma-dangle": ["error", "always-multiline"],
2025-04-17 21:02:49 +02:00
"indent": ["error", 4],
2025-04-17 20:55:03 +02:00
},
2025-04-17 20:24:26 +02:00
}
2025-04-16 23:13:51 +02:00
);