@d-kuehn/eslint-config 16.3.2 → 16.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -62,7 +62,7 @@ export default combine(
62
62
  | --------------------------------------------------------------------------------------------------------- | ------------------------------ | ------------------------------------------------- |
63
63
  | [jsxA11y() v6.10.2](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | A11Y | `.jsx`, `.tsx`, `.astro` |
64
64
  | [importX() v4.15.2](https://github.com/un-ts/eslint-plugin-import-x) | ES6+ import/export syntax | All JavaScript/TypeScript files, `.vue` |
65
- | [jsdoc() v51.0.3](https://github.com/gajus/eslint-plugin-jsdoc) | JSDoc comments validation | All JavaScript/TypeScript files |
65
+ | [jsdoc() v51.0.4](https://github.com/gajus/eslint-plugin-jsdoc) | JSDoc comments validation | All JavaScript/TypeScript files |
66
66
  | [jsonc() v2.20.1](https://github.com/ota-meshi/eslint-plugin-jsonc) | JSON validation and formatting | `.json`, `.jsonc`, `.json5` |
67
67
  | [regexp() v2.9.0](https://github.com/ota-meshi/eslint-plugin-regexp) | Regular expressions validation | All JavaScript/TypeScript files, `.vue` |
68
68
  | [unicorn() v59.0.1](https://github.com/sindresorhus/eslint-plugin-unicorn) | Additional JavaScript rules | All JavaScript/TypeScript files, `.vue`, `.astro` |
@@ -76,7 +76,7 @@ export default combine(
76
76
  | [vue() v10.2.0](https://github.com/vuejs/eslint-plugin-vue) | Vue.js rules | `.vue` |
77
77
  | [vueAccessibility() v2.4.1](https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility) | Vue.js accessibility | `.vue` |
78
78
  | [storybook() v9.0.12](https://github.com/storybookjs/eslint-plugin-storybook) | Storybook rules | `**/*.stories.{ts,tsx,js,jsx,mjs,cjs}` |
79
- | [betterTailwindCss() v3.3.1](https://github.com/schoero/eslint-plugin-better-tailwindcss) - Tailwind CSS v3, v4 | Tailwind CSS usage | `.vue`, `.js`, `.ts`, `.jsx`, `.tsx`, `.astro` |
79
+ | [betterTailwindCss() v3.4.0](https://github.com/schoero/eslint-plugin-better-tailwindcss) - Tailwind CSS v3, v4 | Tailwind CSS usage | `.vue`, `.js`, `.ts`, `.jsx`, `.tsx`, `.astro` |
80
80
 
81
81
  ### Testing Configurations
82
82
 
package/dist/index.js CHANGED
@@ -334,12 +334,12 @@ const betterTailwindCss = async (options = {}) => {
334
334
  ]);
335
335
  const baseTailwindRules = {
336
336
  ...pluginBetterTailwindCss.configs.recommended.rules,
337
- "better-tailwindcss/multiline": ["error", {
337
+ "better-tailwindcss/enforce-consistent-class-order": ["error", { order: "improved" }],
338
+ "better-tailwindcss/enforce-consistent-line-wrapping": ["error", {
338
339
  group: "newLine",
339
340
  preferSingleLine: false,
340
341
  printWidth: 120
341
342
  }],
342
- "better-tailwindcss/sort-classes": ["error", { order: "improved" }],
343
343
  ...options?.rules && options.rules
344
344
  };
345
345
  return [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-kuehn/eslint-config",
3
- "version": "16.3.2",
3
+ "version": "16.4.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -38,9 +38,9 @@
38
38
  "eslint": "9.29.0",
39
39
  "eslint-flat-config-utils": "2.1.0",
40
40
  "eslint-plugin-astro": "1.3.1",
41
- "eslint-plugin-better-tailwindcss": "3.3.1",
41
+ "eslint-plugin-better-tailwindcss": "3.4.0",
42
42
  "eslint-plugin-import-x": "4.15.2",
43
- "eslint-plugin-jsdoc": "51.0.3",
43
+ "eslint-plugin-jsdoc": "51.0.4",
44
44
  "eslint-plugin-jsonc": "2.20.1",
45
45
  "eslint-plugin-jsx-a11y": "6.10.2",
46
46
  "eslint-plugin-perfectionist": "4.15.0",