@maz-ui/eslint-config 4.1.7-beta.0 → 4.1.7-beta.6

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/dist/index.d.mts CHANGED
@@ -5,7 +5,7 @@ type MazESLintUserConfig = TypedFlatConfigItem | TypedFlatConfigItem[] | Linter.
5
5
  interface MazESLintOptions extends OptionsConfig {
6
6
  /**
7
7
  * Enable Tailwind CSS support
8
- * @default true
8
+ * @default false
9
9
  */
10
10
  tailwindcss?: boolean;
11
11
  /**
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@ type MazESLintUserConfig = TypedFlatConfigItem | TypedFlatConfigItem[] | Linter.
5
5
  interface MazESLintOptions extends OptionsConfig {
6
6
  /**
7
7
  * Enable Tailwind CSS support
8
- * @default true
8
+ * @default false
9
9
  */
10
10
  tailwindcss?: boolean;
11
11
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maz-ui/eslint-config",
3
3
  "type": "module",
4
- "version": "4.1.7-beta.0",
4
+ "version": "4.1.7-beta.6",
5
5
  "description": "ESLint configuration for JavaScript/TypeScript projects",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",
7
7
  "license": "MIT",
@@ -54,22 +54,21 @@
54
54
  }
55
55
  },
56
56
  "dependencies": {
57
- "@antfu/eslint-config": "^5.2.1",
57
+ "@antfu/eslint-config": "^5.3.0",
58
58
  "eslint-plugin-format": "^1.0.1",
59
- "eslint-plugin-sonarjs": "^3.0.4",
59
+ "eslint-plugin-sonarjs": "^3.0.5",
60
60
  "eslint-plugin-tailwindcss": "^3.18.2",
61
61
  "eslint-plugin-vuejs-accessibility": "^2.4.0"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@types/eslint-plugin-tailwindcss": "^3.17.0",
65
- "eslint": "^9.32.0",
66
- "typescript": "^5.9.2",
67
- "unbuild": "^3.6.0"
65
+ "eslint": "^9.35.0",
66
+ "unbuild": "^3.6.1"
68
67
  },
69
68
  "lint-staged": {
70
69
  "*.{js,jsx,ts,tsx,mjs,mts,cjs,md,yml,json}": [
71
70
  "eslint --fix"
72
71
  ]
73
72
  },
74
- "gitHead": "96035148527e2e795db6a7ea06f42e45995335b2"
73
+ "gitHead": "c7a54d3e824edf3fced1e6c4432c50f248b15a18"
75
74
  }