@santi020k/eslint-config-santi020k 1.2.0 → 1.2.1
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/README.md +1 -0
- package/dist/cjs/index.cjs +3 -3
- package/dist/esm/index.mjs +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -195,6 +195,7 @@ Here are some useful scripts you can add to your `package.json`:
|
|
|
195
195
|
[ ] Unit testing
|
|
196
196
|
[ ] Better documentation
|
|
197
197
|
[ ] Additional Frameworks support
|
|
198
|
+
[ ] Refactor rules structure (eslint configurations are currently duplicated)
|
|
198
199
|
|
|
199
200
|
## Contributing
|
|
200
201
|
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -355,8 +355,8 @@ const tsConfig = [
|
|
|
355
355
|
];
|
|
356
356
|
|
|
357
357
|
const rules$2 = {
|
|
358
|
-
...rules$
|
|
359
|
-
...rules$
|
|
358
|
+
...rules$4,
|
|
359
|
+
...rules$3
|
|
360
360
|
};
|
|
361
361
|
|
|
362
362
|
const reactTsConfig = [
|
|
@@ -423,8 +423,8 @@ const rules = {
|
|
|
423
423
|
};
|
|
424
424
|
|
|
425
425
|
const nextTsConfig = [
|
|
426
|
-
...reactTsConfig,
|
|
427
426
|
...nextConfig,
|
|
427
|
+
...reactTsConfig,
|
|
428
428
|
{
|
|
429
429
|
name: "custom-next-ts",
|
|
430
430
|
rules
|
package/dist/esm/index.mjs
CHANGED
|
@@ -353,8 +353,8 @@ const tsConfig = [
|
|
|
353
353
|
];
|
|
354
354
|
|
|
355
355
|
const rules$2 = {
|
|
356
|
-
...rules$
|
|
357
|
-
...rules$
|
|
356
|
+
...rules$4,
|
|
357
|
+
...rules$3
|
|
358
358
|
};
|
|
359
359
|
|
|
360
360
|
const reactTsConfig = [
|
|
@@ -421,8 +421,8 @@ const rules = {
|
|
|
421
421
|
};
|
|
422
422
|
|
|
423
423
|
const nextTsConfig = [
|
|
424
|
-
...reactTsConfig,
|
|
425
424
|
...nextConfig,
|
|
425
|
+
...reactTsConfig,
|
|
426
426
|
{
|
|
427
427
|
name: "custom-next-ts",
|
|
428
428
|
rules
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@santi020k/eslint-config-santi020k",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
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/cjs/index.cjs",
|