@storm-software/eslint 0.33.0 → 0.35.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/dist/preset.d.mts +14 -1
- package/dist/preset.d.ts +14 -1
- package/dist/preset.mjs +11513 -391
- package/package.json +1 -1
package/dist/preset.d.mts
CHANGED
|
@@ -780,7 +780,11 @@ interface RuleOptions {
|
|
|
780
780
|
* @see https://typescript-eslint.io/rules/use-unknown-in-catch-callback-variable
|
|
781
781
|
*/
|
|
782
782
|
'@typescript-eslint/use-unknown-in-catch-callback-variable'?: Linter.RuleEntry<[]>
|
|
783
|
-
|
|
783
|
+
/**
|
|
784
|
+
* Ensures the file has a Storm Software banner
|
|
785
|
+
* @see https://docs.stormsoftware.com/eslint-rules/banner
|
|
786
|
+
*/
|
|
787
|
+
'banner/banner'?: Linter.RuleEntry<BannerBanner>
|
|
784
788
|
/**
|
|
785
789
|
* Enforce emojis are wrapped in `<span>` and provide screenreader access.
|
|
786
790
|
* @see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/accessible-emoji.md
|
|
@@ -3868,6 +3872,15 @@ type TypescriptEslintUnifiedSignatures = []|[{
|
|
|
3868
3872
|
|
|
3869
3873
|
ignoreDifferentlyNamedParameters?: boolean
|
|
3870
3874
|
}]
|
|
3875
|
+
// ----- banner/banner -----
|
|
3876
|
+
type BannerBanner = []|[{
|
|
3877
|
+
|
|
3878
|
+
banner?: string
|
|
3879
|
+
|
|
3880
|
+
commentType?: string
|
|
3881
|
+
|
|
3882
|
+
numNewlines?: number
|
|
3883
|
+
}]
|
|
3871
3884
|
// ----- prettier/prettier -----
|
|
3872
3885
|
type PrettierPrettier = []|[{
|
|
3873
3886
|
[k: string]: unknown | undefined
|
package/dist/preset.d.ts
CHANGED
|
@@ -780,7 +780,11 @@ interface RuleOptions {
|
|
|
780
780
|
* @see https://typescript-eslint.io/rules/use-unknown-in-catch-callback-variable
|
|
781
781
|
*/
|
|
782
782
|
'@typescript-eslint/use-unknown-in-catch-callback-variable'?: Linter.RuleEntry<[]>
|
|
783
|
-
|
|
783
|
+
/**
|
|
784
|
+
* Ensures the file has a Storm Software banner
|
|
785
|
+
* @see https://docs.stormsoftware.com/eslint-rules/banner
|
|
786
|
+
*/
|
|
787
|
+
'banner/banner'?: Linter.RuleEntry<BannerBanner>
|
|
784
788
|
/**
|
|
785
789
|
* Enforce emojis are wrapped in `<span>` and provide screenreader access.
|
|
786
790
|
* @see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/accessible-emoji.md
|
|
@@ -3868,6 +3872,15 @@ type TypescriptEslintUnifiedSignatures = []|[{
|
|
|
3868
3872
|
|
|
3869
3873
|
ignoreDifferentlyNamedParameters?: boolean
|
|
3870
3874
|
}]
|
|
3875
|
+
// ----- banner/banner -----
|
|
3876
|
+
type BannerBanner = []|[{
|
|
3877
|
+
|
|
3878
|
+
banner?: string
|
|
3879
|
+
|
|
3880
|
+
commentType?: string
|
|
3881
|
+
|
|
3882
|
+
numNewlines?: number
|
|
3883
|
+
}]
|
|
3871
3884
|
// ----- prettier/prettier -----
|
|
3872
3885
|
type PrettierPrettier = []|[{
|
|
3873
3886
|
[k: string]: unknown | undefined
|