@abinnovision/eslint-config-base 3.2.0-beta.8 → 3.2.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.2.0](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.1.0...eslint-config-base-v3.2.0) (2026-03-08)
4
+
5
+
6
+ ### Features
7
+
8
+ * add ESLint stylistic flavour ([#582](https://github.com/abinnovision/js-commons/issues/582)) ([057584a](https://github.com/abinnovision/js-commons/commit/057584af4c0fe63a9dd2371949bb13a85f852ee5))
9
+ * add new ESLint rules to enhance code quality ([#581](https://github.com/abinnovision/js-commons/issues/581)) ([dffb27e](https://github.com/abinnovision/js-commons/commit/dffb27edb19d8c09da6ae124a1b2e704da59e850))
10
+ * replace deprecated rules and remove stylistic rules ([#579](https://github.com/abinnovision/js-commons/issues/579)) ([a8043e9](https://github.com/abinnovision/js-commons/commit/a8043e96e8019b0d3137110bbf7b50e7f2a834f9))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * enhance comments rule to include additional code structures ([#587](https://github.com/abinnovision/js-commons/issues/587)) ([2d2f5a0](https://github.com/abinnovision/js-commons/commit/2d2f5a0549cdc78183fa4032b7209a6689b30323))
16
+
3
17
  ## [3.1.0](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v3.0.3...eslint-config-base-v3.1.0) (2026-02-28)
4
18
 
5
19
 
package/dist/index.cjs CHANGED
@@ -735,8 +735,10 @@ var config4 = (0, import_config4.defineConfig)([
735
735
  /**
736
736
  * Require a blank line before block and line comments.
737
737
  * Comments belong to the following code block, so only enforce
738
- * before, not after. Allows comments at the start of blocks,
739
- * objects, arrays, and classes without a preceding blank line.
738
+ * before, not after.
739
+ *
740
+ * Allows comments at the start of blocks, objects, arrays, classes,
741
+ * interfaces, types, enums, and modules without a preceding blank line.
740
742
  *
741
743
  * @see https://eslint.style/rules/default/lines-around-comment
742
744
  */
@@ -748,7 +750,11 @@ var config4 = (0, import_config4.defineConfig)([
748
750
  allowBlockStart: true,
749
751
  allowObjectStart: true,
750
752
  allowArrayStart: true,
751
- allowClassStart: true
753
+ allowClassStart: true,
754
+ allowInterfaceStart: true,
755
+ allowTypeStart: true,
756
+ allowEnumStart: true,
757
+ allowModuleStart: true
752
758
  }
753
759
  ],
754
760
  /**
package/dist/index.js CHANGED
@@ -695,8 +695,10 @@ var config4 = defineConfig4([
695
695
  /**
696
696
  * Require a blank line before block and line comments.
697
697
  * Comments belong to the following code block, so only enforce
698
- * before, not after. Allows comments at the start of blocks,
699
- * objects, arrays, and classes without a preceding blank line.
698
+ * before, not after.
699
+ *
700
+ * Allows comments at the start of blocks, objects, arrays, classes,
701
+ * interfaces, types, enums, and modules without a preceding blank line.
700
702
  *
701
703
  * @see https://eslint.style/rules/default/lines-around-comment
702
704
  */
@@ -708,7 +710,11 @@ var config4 = defineConfig4([
708
710
  allowBlockStart: true,
709
711
  allowObjectStart: true,
710
712
  allowArrayStart: true,
711
- allowClassStart: true
713
+ allowClassStart: true,
714
+ allowInterfaceStart: true,
715
+ allowTypeStart: true,
716
+ allowEnumStart: true,
717
+ allowModuleStart: true
712
718
  }
713
719
  ],
714
720
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abinnovision/eslint-config-base",
3
- "version": "3.2.0-beta.8",
3
+ "version": "3.2.0",
4
4
  "publishConfig": {
5
5
  "npm": true,
6
6
  "ghpr": true,