I'm using: ``` "@antfu/eslint-config": "^7.2.0", "@eslint/css": "^0.14.1", "@nuxt/eslint": "^1.11.0", "eslint": "^9.39.1", "eslint-plugin-better-tailwindcss": "^4.0.2", "eslint-plugin-format": "^1.1.0", "eslint-plugin-yml": "^1.19.0", ``` ``` eslint.config.mjs // @ts-check import antfu from '@antfu/eslint-config' import eslintCss from '@eslint/css' import eslintPluginBetterTailwindcss from 'eslint-plugin-better-tailwindcss' import eslintYml from 'eslint-plugin-yml' import eslintParserVue from 'vue-eslint-parser' export default antfu( { vue: true, yaml: false, typescript: true, unocss: false, formatters: true, ignores: ['node_modules', '*.log', '.nuxt', '.cache', '.env', '.rules/**'], // Define specific rule overrides and additions within Antfu's config rules: { // --- Existing Rules (Consolidated) --- 'vue/block-order': ['error', { order: [['template', 'script'], 'style'] }], // Keep block order 'vue/attribute-hyphenation': 'off', // Keep attribute hyphenation off 'vue/v-on-event-hyphenation': 'off', // Keep v-on event hyphenation off 'yml/quotes': ['error', { prefer: 'single', avoidEscape: true }], // Enforce single quotes in YAML '@stylistic/brace-style': ['error', '1tbs', { allowSingleLine: false }], // Enforce 1TBS brace style // --- New Rules --- 'vue/component-name-in-template-casing': ['error', 'PascalCase'], 'vue/custom-event-name-casing': ['error', 'camelCase'], 'vue/no-v-html': ['off'], 'vue/padding-line-between-blocks': ['error', 'always'], '@typescript-eslint/explicit-function-return-type': ['off'], 'node/prefer-global/process': 'off', }, }, { files: ['**/*.vue'], languageOptions: { parser: eslintParserVue, }, }, { plugins: { 'better-tailwindcss': eslintPluginBetterTailwindcss, }, rules: { // enable all recommended rules to report a warning ...(eslintPluginBetterTailwindcss.configs?.['recommended-warn']?.rules ?? {}), // enable all recommended rules to report an error ...(eslintPluginBetterTailwindcss.configs?.['recommended-error']?.rules ?? {}), }, settings: { 'better-tailwindcss': { entryPoint: 'layers/base/assets/css/main.css', }, }, }, eslintCss.configs.recommended, ...eslintYml.configs['flat/standard'], { files: ['.github/**/*.yml', '.github/**/*.yaml'], rules: { // Some GitHub Actions keys intentionally have empty values (e.g., push:, pull_request:) 'yml/no-empty-mapping-value': 'off', 'style/spaced-comment': 'off', }, }, ) ``` Getting error: Run bun eslint . --cache --max-warnings 0 /home/runner/_work/lensinkkozijnen-frontend/lensinkkozijnen-frontend/README.md 119:11 error Incorrect line wrapping. Expected"↵······inline-flex·items-center·gap-2·rounded-md·bg-gray-900·px-3·py-2·text-white↵····"to be"↩↵······inline-flex·items-center·gap-2·rounded-md·bg-gray-900·px-3·py-2·text-white↩↵····" better-tailwindcss/enforce-consistent-line-wrapping /home/runner/_work/lensinkkozijnen-frontend/lensinkkozijnen-frontend/apps/app/pages/index.vue 18:15 error Incorrect line wrapping. Expected"↵··········group·flex·cursor-pointer·flex-col·items-center·justify-center↵··········rounded-2xl·border·border-neutral-100·bg-white·p-8·shadow-sm↵··········transition-all·duration-300↵··········hover:border-blue-200·hover:shadow-xl↵········"to be"↩↵··········group·flex·cursor-pointer·flex-col·items-center·justify-center↩↵··········rounded-2xl·border·border-neutral-100·bg-white·p-8·shadow-sm↩↵··········transition-all·duration-300↩↵··········hover:border-blue-200·hover:shadow-xl↩↵········" better-tailwindcss/enforce-consistent-line-wrapping 26:17 error Incorrect line wrapping. Expected"↵············mb-5·flex·size-20·items-center·justify-center·rounded-2xl↵············bg-linear-to-br·from-blue-50·to-blue-100·transition-transform↵············duration-300↵············group-hover:scale-110↵··········"to be"↩↵············mb-5·flex·size-20·items-center·justify-center·rounded-2xl↩↵············bg-linear-to-br·from-blue-50·to-blue-100·transition-transform↩↵············duration-300↩↵············group-hover:scale-110↩↵··········" better-tailwindcss/enforce-consistent-line-wrapping I know that the error comes from the lineBreakStyle's default being 'unix'