@ariel-salgado/eslint-config 0.1.4 → 0.1.5
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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -772,6 +772,7 @@ async function svelte(options = {}) {
|
|
|
772
772
|
"svelte/sort-attributes": "error",
|
|
773
773
|
"svelte/system": "error",
|
|
774
774
|
"svelte/valid-each-key": "error",
|
|
775
|
+
"style/indent": "off",
|
|
775
776
|
"unused-imports/no-unused-vars": ["error", {
|
|
776
777
|
args: "after-used",
|
|
777
778
|
argsIgnorePattern: "^_",
|
|
@@ -779,7 +780,6 @@ async function svelte(options = {}) {
|
|
|
779
780
|
varsIgnorePattern: "^(_|\\$\\$Props$|\\$\\$Events$|\\$\\$Slots$)"
|
|
780
781
|
}],
|
|
781
782
|
...stylistic$1 ? {
|
|
782
|
-
"style/indent": "off",
|
|
783
783
|
"style/no-trailing-spaces": "off",
|
|
784
784
|
"svelte/derived-has-same-inputs-outputs": "error",
|
|
785
785
|
"svelte/html-closing-bracket-spacing": "error",
|
|
@@ -1411,6 +1411,7 @@ async function tailwindcss(options = {}) {
|
|
|
1411
1411
|
name: "ariel/tailwindcss/rules",
|
|
1412
1412
|
rules: {
|
|
1413
1413
|
...plugin_tailwindcss.configs.recommended.rules,
|
|
1414
|
+
"tailwindcss/enforce-consistent-line-wrapping": "off",
|
|
1414
1415
|
"tailwindcss/enforce-consistent-important-position": "error",
|
|
1415
1416
|
"tailwindcss/enforce-shorthand-classes": "error",
|
|
1416
1417
|
"tailwindcss/no-deprecated-classes": "error",
|
package/package.json
CHANGED