@luxass/eslint-config 4.6.0 → 4.8.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.js CHANGED
@@ -1009,8 +1009,8 @@ import pluginAntfu3 from "eslint-plugin-antfu";
1009
1009
  var StylisticConfigDefaults = {
1010
1010
  indent: 2,
1011
1011
  jsx: true,
1012
- quotes: "single",
1013
- semi: false
1012
+ quotes: "double",
1013
+ semi: true
1014
1014
  };
1015
1015
  async function stylistic(options = {}) {
1016
1016
  const {
@@ -1463,7 +1463,7 @@ async function yaml(options = {}) {
1463
1463
  ]);
1464
1464
  const {
1465
1465
  indent = 2,
1466
- quotes = "single"
1466
+ quotes = "double"
1467
1467
  } = typeof stylistic2 === "boolean" ? {} : stylistic2;
1468
1468
  return [
1469
1469
  {
@@ -1801,7 +1801,7 @@ async function astro(options = {}) {
1801
1801
  "astro/no-deprecated-getentrybyslug": "error",
1802
1802
  "astro/no-set-html-directive": "off",
1803
1803
  "astro/no-unused-define-vars-in-style": "error",
1804
- "astro/semi": "off",
1804
+ "astro/semi": "error",
1805
1805
  "astro/valid-compile": "error",
1806
1806
  ...stylistic2 ? {
1807
1807
  "style/indent": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxass/eslint-config",
3
- "version": "4.6.0",
3
+ "version": "4.8.0",
4
4
  "description": "ESLint config for @luxass",
5
5
  "type": "module",
6
6
  "author": {
@@ -8,7 +8,7 @@
8
8
  "email": "lucasnrgaard@gmail.com",
9
9
  "url": "https://luxass.dev"
10
10
  },
11
- "packageManager": "pnpm@9.2.0",
11
+ "packageManager": "pnpm@9.4.0",
12
12
  "license": "MIT",
13
13
  "repository": {
14
14
  "type": "git",
@@ -34,7 +34,7 @@
34
34
  "dist"
35
35
  ],
36
36
  "engines": {
37
- "node": ">=20"
37
+ "node": ">=18"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "pnpm typegen && tsup --format esm,cjs --clean --dts",
@@ -106,7 +106,7 @@
106
106
  "eslint-plugin-n": "^17.8.1",
107
107
  "eslint-plugin-regexp": "^2.6.0",
108
108
  "eslint-plugin-toml": "^0.11.0",
109
- "eslint-plugin-unicorn": "^53.0.0",
109
+ "eslint-plugin-unicorn": "^54.0.0",
110
110
  "eslint-plugin-unused-imports": "^4.0.0",
111
111
  "eslint-plugin-vitest": "^0.5.4",
112
112
  "eslint-plugin-vue": "^9.26.0",
@@ -116,35 +116,35 @@
116
116
  "jsonc-eslint-parser": "^2.4.0",
117
117
  "local-pkg": "^0.5.0",
118
118
  "parse-gitignore": "^2.0.0",
119
- "toml-eslint-parser": "^0.9.3",
119
+ "toml-eslint-parser": "^0.10.0",
120
120
  "vue-eslint-parser": "^9.4.3",
121
121
  "yaml-eslint-parser": "^1.2.3"
122
122
  },
123
123
  "devDependencies": {
124
- "@eslint-react/eslint-plugin": "^1.5.15",
125
- "@eslint/config-inspector": "^0.4.10",
126
- "@stylistic/eslint-plugin-migrate": "^2.1.0",
124
+ "@eslint-react/eslint-plugin": "^1.5.19",
125
+ "@eslint/config-inspector": "^0.5.1",
126
+ "@stylistic/eslint-plugin-migrate": "^2.3.0",
127
127
  "@types/eslint": "^8.56.10",
128
128
  "@types/estree": "^1.0.5",
129
- "@types/node": "^20.12.7",
130
- "@typescript-eslint/rule-tester": "^7.12.0",
131
- "@unocss/eslint-plugin": "^0.60.4",
129
+ "@types/node": "^20.14.9",
130
+ "@typescript-eslint/rule-tester": "^7.14.1",
131
+ "@unocss/eslint-plugin": "^0.61.0",
132
132
  "astro-eslint-parser": "^1.0.2",
133
133
  "eslint": "npm:eslint-ts-patch@9.2.0-6",
134
- "eslint-plugin-astro": "^1.2.0",
135
- "eslint-plugin-format": "^0.1.1",
134
+ "eslint-plugin-astro": "^1.2.2",
135
+ "eslint-plugin-format": "^0.1.2",
136
136
  "eslint-plugin-react-hooks": "^4.6.2",
137
137
  "eslint-plugin-react-refresh": "^0.4.7",
138
- "eslint-plugin-tailwindcss": "^3.17.3",
138
+ "eslint-plugin-tailwindcss": "^3.17.4",
139
139
  "eslint-typegen": "^0.2.4",
140
- "lint-staged": "^15.2.5",
140
+ "lint-staged": "^15.2.7",
141
141
  "prettier-plugin-astro": "^0.14.0",
142
142
  "simple-git-hooks": "^2.11.1",
143
143
  "tsup": "^8.1.0",
144
- "tsx": "^4.14.0",
145
- "typescript": "^5.4.5",
144
+ "tsx": "^4.16.0",
145
+ "typescript": "^5.5.2",
146
146
  "vitest": "^1.6.0",
147
- "vue": "^3.4.27"
147
+ "vue": "^3.4.30"
148
148
  },
149
149
  "simple-git-hooks": {
150
150
  "pre-commit": "pnpm lint-staged"