@storm-software/eslint 0.148.15 → 0.148.17
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 -1
- package/dist/preset.js +1 -1
- package/dist/types.d.ts +3 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/dist/preset.js
CHANGED
|
@@ -810,7 +810,7 @@ import { default as default4 } from "eslint-plugin-n";
|
|
|
810
810
|
import { default as default5 } from "eslint-plugin-no-secrets";
|
|
811
811
|
import { default as default6 } from "eslint-plugin-perfectionist";
|
|
812
812
|
|
|
813
|
-
// ../../node_modules/.pnpm/eslint-plugin-pnpm@0.3.0_patch_hash=
|
|
813
|
+
// ../../node_modules/.pnpm/eslint-plugin-pnpm@0.3.0_patch_hash=72dcde755c336eeca3e6170de1106fd85ecb66171e060788f80_77de8d021daddf8991f7435612f1f9fb/node_modules/eslint-plugin-pnpm/dist/index.mjs
|
|
814
814
|
import * as jsoncParser from "jsonc-eslint-parser";
|
|
815
815
|
import * as yamlParser from "yaml-eslint-parser";
|
|
816
816
|
import fs, { existsSync, readFileSync } from "node:fs";
|
package/dist/types.d.ts
CHANGED
|
@@ -10392,7 +10392,7 @@ type NoEmpty = []|[{
|
|
|
10392
10392
|
}]
|
|
10393
10393
|
// ----- no-empty-function -----
|
|
10394
10394
|
type NoEmptyFunction = []|[{
|
|
10395
|
-
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods")[]
|
|
10395
|
+
allow?: ("functions" | "arrowFunctions" | "generatorFunctions" | "methods" | "generatorMethods" | "getters" | "setters" | "constructors" | "asyncFunctions" | "asyncMethods" | "privateConstructors" | "protectedConstructors" | "decoratedFunctions" | "overrideMethods")[]
|
|
10396
10396
|
}]
|
|
10397
10397
|
// ----- no-empty-pattern -----
|
|
10398
10398
|
type NoEmptyPattern = []|[{
|
|
@@ -10594,13 +10594,9 @@ type NoRestrictedModules = ((string | {
|
|
|
10594
10594
|
}[])
|
|
10595
10595
|
// ----- no-restricted-properties -----
|
|
10596
10596
|
type NoRestrictedProperties = ({
|
|
10597
|
-
|
|
10598
|
-
property?: string
|
|
10599
|
-
message?: string
|
|
10597
|
+
[k: string]: unknown | undefined
|
|
10600
10598
|
} | {
|
|
10601
|
-
|
|
10602
|
-
property: string
|
|
10603
|
-
message?: string
|
|
10599
|
+
[k: string]: unknown | undefined
|
|
10604
10600
|
})[]
|
|
10605
10601
|
// ----- no-restricted-syntax -----
|
|
10606
10602
|
type NoRestrictedSyntax = (string | {
|
package/package.json
CHANGED