@santi020k/eslint-config-santi020k 3.1.3 → 3.1.4
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 +16 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -511,7 +511,13 @@ var markdown = [
|
|
|
511
511
|
// Disable js/ts Eslint rules, markdown issues
|
|
512
512
|
indent: "off",
|
|
513
513
|
"no-irregular-whitespace": "off",
|
|
514
|
-
"@stylistic/indent": "off"
|
|
514
|
+
"@stylistic/indent": "off",
|
|
515
|
+
"no-unused-vars": "off",
|
|
516
|
+
"@stylistic/jsx-closing-bracket-location": "off",
|
|
517
|
+
"no-multi-spaces": "off",
|
|
518
|
+
"@stylistic/no-multi-spaces": "off",
|
|
519
|
+
"comma-dangle": "off",
|
|
520
|
+
"@stylistic/jsx-tag-spacing": "off"
|
|
515
521
|
}
|
|
516
522
|
}
|
|
517
523
|
];
|
|
@@ -521,17 +527,25 @@ import pluginMdx from "eslint-plugin-mdx";
|
|
|
521
527
|
var mdx = [
|
|
522
528
|
{
|
|
523
529
|
name: "mdx-flat",
|
|
530
|
+
files: ["**/*.{mdx}"],
|
|
524
531
|
...pluginMdx.flat
|
|
525
532
|
},
|
|
526
533
|
{
|
|
527
534
|
name: "mdx-blocks",
|
|
535
|
+
files: ["**/*.{mdx}"],
|
|
528
536
|
...pluginMdx.flatCodeBlocks,
|
|
529
537
|
rules: {
|
|
530
538
|
...pluginMdx.flatCodeBlocks.rules,
|
|
531
539
|
// Disable js/ts Eslint rules, markdown issues
|
|
532
540
|
indent: "off",
|
|
533
541
|
"no-irregular-whitespace": "off",
|
|
534
|
-
"@stylistic/indent": "off"
|
|
542
|
+
"@stylistic/indent": "off",
|
|
543
|
+
"no-unused-vars": "off",
|
|
544
|
+
"@stylistic/jsx-closing-bracket-location": "off",
|
|
545
|
+
"no-multi-spaces": "off",
|
|
546
|
+
"@stylistic/no-multi-spaces": "off",
|
|
547
|
+
"comma-dangle": "off",
|
|
548
|
+
"@stylistic/jsx-tag-spacing": "off"
|
|
535
549
|
}
|
|
536
550
|
}
|
|
537
551
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@santi020k/eslint-config-santi020k",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"description": "A comprehensive ESLint configuration package for JavaScript, TypeScript, and React projects, including popular plugins and custom rules for consistent coding style.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|