@ariel-salgado/eslint-config 0.0.5 → 0.0.6-beta.2
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 +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1372,7 +1372,15 @@ async function tailwindcss(options = {}) {
|
|
|
1372
1372
|
name: "ariel/tailwindcss",
|
|
1373
1373
|
plugins: { tailwindcss: plugin_tailwindcss },
|
|
1374
1374
|
files,
|
|
1375
|
-
rules: {
|
|
1375
|
+
rules: {
|
|
1376
|
+
...plugin_tailwindcss.configs.recommended.rules,
|
|
1377
|
+
"tailwindcss/enforce-consistent-line-wrapping": ["error", {
|
|
1378
|
+
indent: "tab",
|
|
1379
|
+
printWidth: 120,
|
|
1380
|
+
preferSingleLine: true
|
|
1381
|
+
}],
|
|
1382
|
+
"tailwindcss/no-unregistered-classes": ["error", { detectComponentClasses: true }]
|
|
1383
|
+
},
|
|
1376
1384
|
settings: { "better-tailwindcss": { entryPoint } },
|
|
1377
1385
|
...overrides
|
|
1378
1386
|
}];
|
|
@@ -1433,7 +1441,8 @@ async function perfectionist() {
|
|
|
1433
1441
|
"perfectionist/sort-named-exports": ["error", {
|
|
1434
1442
|
order: "asc",
|
|
1435
1443
|
type: "line-length"
|
|
1436
|
-
}]
|
|
1444
|
+
}],
|
|
1445
|
+
"no-duplicate-imports": "off"
|
|
1437
1446
|
}
|
|
1438
1447
|
}];
|
|
1439
1448
|
}
|
package/package.json
CHANGED