linted 35.2.2 → 35.2.4

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.
Files changed (2) hide show
  1. package/.gitattributes +7 -2
  2. package/package.json +7 -7
package/.gitattributes CHANGED
@@ -20,6 +20,7 @@ LICENSE text eol=lf
20
20
  *.md text eol=lf
21
21
  *.json text eol=lf
22
22
  *.jsonc text eol=lf
23
+ *.code-snippets text eol=lf
23
24
  *.yml text eol=lf
24
25
  *.yaml text eol=lf
25
26
  *.csv text eol=lf
@@ -27,6 +28,9 @@ LICENSE text eol=lf
27
28
  *.svg text eol=lf
28
29
  *.xml text eol=lf
29
30
  *.plist text eol=lf
31
+ *.tmLanguage text eol=lf
32
+ *.tmPreferences text eol=lf
33
+ *.tmTheme text eol=lf
30
34
  *.h text eol=lf
31
35
  *.hpp text eol=lf
32
36
  *.hxx text eol=lf
@@ -47,8 +51,9 @@ LICENSE text eol=lf
47
51
  *.svelte text eol=lf
48
52
  *.py text eol=lf
49
53
  *.jinja text eol=lf
54
+ *.npmrc text eol=lf
50
55
  *.claspignore text eol=lf
51
56
  *.funcignore text eol=lf
52
- *.npmrc text eol=lf
53
57
  *.example text eol=lf
54
- *.code-snippets text eol=lf
58
+ *.lark text eol=lf
59
+ *.re text eol=lf
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "$pkg": "2411.6.1",
2
+ "$pkg": "2411.7.0",
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "linted",
6
- "version": "35.2.2",
6
+ "version": "35.2.4",
7
7
  "repository": "github:jimmy-zhening-luo/linted",
8
8
  "description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
9
9
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  "types": "dist/index.d.ts",
38
38
  "peerDependencies": {
39
39
  "eslint": "~9.39.1",
40
- "eslint-plugin-svelte": "~3.13.0",
40
+ "eslint-plugin-svelte": "~3.13.1",
41
41
  "typescript": "^5.9.3"
42
42
  },
43
43
  "peerDependenciesMeta": {
@@ -51,13 +51,13 @@
51
51
  "dependencies": {
52
52
  "@eslint/css": "0.14.1",
53
53
  "@eslint/json": "0.14.0",
54
- "@eslinted/core": "32.1.3",
55
- "@eslinted/defaults": "17.6.5",
54
+ "@eslinted/core": "32.1.5",
55
+ "@eslinted/defaults": "17.7.1",
56
56
  "@html-eslint/eslint-plugin": "0.50.0",
57
57
  "@stylistic/eslint-plugin": "5.6.1",
58
58
  "eslint-plugin-jsonc": "2.21.0",
59
59
  "eslint-plugin-yml": "1.19.0",
60
- "typescript-eslint": "8.48.0"
60
+ "typescript-eslint": "8.48.1"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/chai": "^5.2.3",
@@ -68,7 +68,7 @@
68
68
  "typescript": "^5.9.3"
69
69
  },
70
70
  "scripts": {
71
- "clean": "cmd --% /c \"for %G in (types dist build packed) do (if exist %G rmdir /s /q %G) & for %G in (.eslintcache) do (if exist %G del /f /q %G)\" || rm -rf types dist build packed .eslintcache",
71
+ "clean": "cmd --% /c \"for %G in (types dist build packed .svelte-kit) do (if exist %G rmdir /s /q %G) & for %G in (.eslintcache) do (if exist %G del /f /q %G)\" || rm -rf types dist build packed .svelte-kit .eslintcache",
72
72
  "build": "npm run build:ts",
73
73
  "build:ts": "tsc -b src",
74
74
  "build:svelte": "svelte-kit sync && svelte-check && vite build",