@fluid-topics/ft-eslint 1.3.32 → 1.3.34
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.
|
@@ -12,7 +12,7 @@ export const ftCssVariableNames = {
|
|
|
12
12
|
},
|
|
13
13
|
},
|
|
14
14
|
create({ report, sourceCode }) {
|
|
15
|
-
const ftCssVarPattern = /--ft
|
|
15
|
+
const ftCssVarPattern = /--ft(ds)?-[a-z0-9-]+/g;
|
|
16
16
|
function reportFtCssVariableNames(rawValue, sourceLocation, offset) {
|
|
17
17
|
const ftCssVarMatch = rawValue.matchAll(ftCssVarPattern);
|
|
18
18
|
for (const match of ftCssVarMatch) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-eslint",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.34",
|
|
4
4
|
"description": "ESlint rules for web components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"lit": "3.1.0"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "3951ab5127fb6236f637d4409c3b78811703bcd8"
|
|
25
25
|
}
|