@stardeck-customer-apps/eslint-plugin 1.0.0 → 1.0.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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -4
package/dist/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ var rule = {
|
|
|
35
35
|
recommended: true
|
|
36
36
|
},
|
|
37
37
|
messages: {
|
|
38
|
-
noTemplateLiteral: "Avoid template literals with interpolation in className. Use cn()
|
|
38
|
+
noTemplateLiteral: "Avoid template literals with interpolation in className. Use cn() instead."
|
|
39
39
|
},
|
|
40
40
|
schema: []
|
|
41
41
|
},
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ var rule = {
|
|
|
7
7
|
recommended: true
|
|
8
8
|
},
|
|
9
9
|
messages: {
|
|
10
|
-
noTemplateLiteral: "Avoid template literals with interpolation in className. Use cn()
|
|
10
|
+
noTemplateLiteral: "Avoid template literals with interpolation in className. Use cn() instead."
|
|
11
11
|
},
|
|
12
12
|
schema: []
|
|
13
13
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stardeck-customer-apps/eslint-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Custom ESLint rules for Stardeck customer apps",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,9 +26,7 @@
|
|
|
26
26
|
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
27
27
|
"typecheck": "tsc --noEmit",
|
|
28
28
|
"format": "prettier --write . && eslint . --fix",
|
|
29
|
-
"lint": "eslint src/"
|
|
30
|
-
"test": "vitest run",
|
|
31
|
-
"test:watch": "vitest --watch"
|
|
29
|
+
"lint": "eslint src/"
|
|
32
30
|
},
|
|
33
31
|
"keywords": [
|
|
34
32
|
"stardeck",
|