@abinnovision/eslint-config-base 3.2.0-beta.8 → 3.2.0-beta.9
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 +9 -3
- package/dist/index.js +9 -3
- package/package.json +1 -1
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.
|
|
739
|
-
*
|
|
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.
|
|
699
|
-
*
|
|
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
|
/**
|