@lincy/eslint-config 3.2.0 → 3.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/dist/index.cjs CHANGED
@@ -1508,8 +1508,11 @@ function lincy(options = {}, ...userConfigs) {
1508
1508
  }));
1509
1509
  }
1510
1510
  }
1511
- if (enableStylistic)
1512
- configs.push(stylistic());
1511
+ if (enableStylistic) {
1512
+ configs.push(stylistic({
1513
+ overrides: overrides.stylistic
1514
+ }));
1515
+ }
1513
1516
  if (options.test ?? true) {
1514
1517
  configs.push(test({
1515
1518
  isInEditor,
package/dist/index.js CHANGED
@@ -1406,8 +1406,11 @@ function lincy(options = {}, ...userConfigs) {
1406
1406
  }));
1407
1407
  }
1408
1408
  }
1409
- if (enableStylistic)
1410
- configs.push(stylistic());
1409
+ if (enableStylistic) {
1410
+ configs.push(stylistic({
1411
+ overrides: overrides.stylistic
1412
+ }));
1413
+ }
1411
1414
  if (options.test ?? true) {
1412
1415
  configs.push(test({
1413
1416
  isInEditor,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lincy/eslint-config",
3
3
  "type": "module",
4
- "version": "3.2.0",
4
+ "version": "3.2.1",
5
5
  "packageManager": "pnpm@8.7.6",
6
6
  "description": "LinCenYing's ESLint config",
7
7
  "author": "LinCenYing <lincenying@gmail.com> (https://github.com/lincenying/)",