@maz-ui/eslint-config 4.0.0-beta.7 → 4.0.0

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
@@ -25,7 +25,7 @@ interface MazESLintOptions extends OptionsConfig {
25
25
  env?: 'development' | 'production';
26
26
  /**
27
27
  * Files to ignore
28
- * @default ['**\/*.md', 'dist/**', 'node_modules/**']
28
+ * @default ['dist/**', 'node_modules/**']
29
29
  */
30
30
  ignores?: string[];
31
31
  /**
package/dist/index.d.ts CHANGED
@@ -25,7 +25,7 @@ interface MazESLintOptions extends OptionsConfig {
25
25
  env?: 'development' | 'production';
26
26
  /**
27
27
  * Files to ignore
28
- * @default ['**\/*.md', 'dist/**', 'node_modules/**']
28
+ * @default ['dist/**', 'node_modules/**']
29
29
  */
30
30
  ignores?: string[];
31
31
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maz-ui/eslint-config",
3
3
  "type": "module",
4
- "version": "4.0.0-beta.7",
4
+ "version": "4.0.0",
5
5
  "description": "ESLint configuration for JavaScript/TypeScript projects",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",
7
7
  "license": "MIT",
@@ -25,8 +25,7 @@
25
25
  ".": {
26
26
  "types": "./dist/index.d.ts",
27
27
  "import": "./dist/index.mjs"
28
- },
29
- "./*": "./*"
28
+ }
30
29
  },
31
30
  "main": "./dist/index.mjs",
32
31
  "types": "./dist/index.d.ts",
@@ -42,44 +41,35 @@
42
41
  "build": "unbuild",
43
42
  "dev": "unbuild --stub",
44
43
  "typecheck": "tsc --noEmit --skipLibCheck",
45
- "lint": "eslint .",
46
- "lint:fix": "eslint . --fix",
44
+ "lint": "cross-env NODE_ENV=production eslint .",
45
+ "lint:fix": "pnpm lint --fix",
47
46
  "pre-commit": "lint-staged"
48
47
  },
49
48
  "peerDependencies": {
50
- "eslint-plugin-format": "^1.0.1",
51
- "eslint-plugin-sonarjs": "^3.0.2",
52
- "eslint-plugin-tailwindcss": "^3.18.0",
53
- "eslint-plugin-vuejs-accessibility": "^2.4.0"
49
+ "eslint": "^9.0.0"
54
50
  },
55
51
  "peerDependenciesMeta": {
56
- "eslint-plugin-format": {
57
- "optional": true
58
- },
59
- "eslint-plugin-sonarjs": {
60
- "optional": true
61
- },
62
- "eslint-plugin-tailwindcss": {
63
- "optional": true
64
- },
65
- "eslint-plugin-vuejs-accessibility": {
52
+ "eslint": {
66
53
  "optional": true
67
54
  }
68
55
  },
69
56
  "dependencies": {
70
- "@antfu/eslint-config": "^4.14.1"
57
+ "@antfu/eslint-config": "^5.2.0",
58
+ "eslint-plugin-format": "^1.0.1",
59
+ "eslint-plugin-sonarjs": "^3.0.2",
60
+ "eslint-plugin-tailwindcss": "^3.18.0",
61
+ "eslint-plugin-vuejs-accessibility": "^2.4.0"
71
62
  },
72
63
  "devDependencies": {
73
64
  "@types/eslint-plugin-tailwindcss": "^3.17.0",
74
- "eslint": "^9.29.0",
75
- "eslint-plugin-format": "^1.0.1",
76
- "typescript": "^5.8.3",
77
- "unbuild": "^3.5.0"
65
+ "eslint": "^9.32.0",
66
+ "typescript": "^5.9.2",
67
+ "unbuild": "^3.6.0"
78
68
  },
79
69
  "lint-staged": {
80
- "*.{js,jsx,ts,tsx,mjs,mts,cjs,md}": [
70
+ "*.{js,jsx,ts,tsx,mjs,mts,cjs,md,yml,json}": [
81
71
  "eslint --fix"
82
72
  ]
83
73
  },
84
- "gitHead": "b64fa54fbf3c645a1f2009f44c50da350bd8461e"
74
+ "gitHead": "b2e03a043ad3334ed5ce456c7f0e67c728c09524"
85
75
  }