@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.
Files changed (2) hide show
  1. package/dist/index.js +11 -2
  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: { ...plugin_tailwindcss.configs.recommended.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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ariel-salgado/eslint-config",
3
3
  "type": "module",
4
- "version": "0.0.5",
4
+ "version": "0.0.6-beta.2",
5
5
  "description": "ESLint config for @ariel-salgado.",
6
6
  "author": "Ariel Salgado <ariel.salgado.acevedo@gmail.com>",
7
7
  "license": "MIT",