@andrewt03/eslint-typescript-rules 0.0.60 → 0.0.61
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.d.mts +1 -3
- package/dist/index.d.ts +1 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
type ESLintOverrideRuleOptions =
|
|
2
|
-
[key: string]: string | number | boolean | string[];
|
|
3
|
-
};
|
|
1
|
+
type ESLintOverrideRuleOptions = Record<string, string | number | boolean | string[]>;
|
|
4
2
|
type ConsistentGenericConstructorOverrideRuleOptions = "constructor" | "type-annotation";
|
|
5
3
|
type QuotesOverrideRuleOptions = "single" | "double" | "backtick";
|
|
6
4
|
type ConsistentTypeDefinitionsOverrideRuleOptions = "interface" | "type";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
type ESLintOverrideRuleOptions =
|
|
2
|
-
[key: string]: string | number | boolean | string[];
|
|
3
|
-
};
|
|
1
|
+
type ESLintOverrideRuleOptions = Record<string, string | number | boolean | string[]>;
|
|
4
2
|
type ConsistentGenericConstructorOverrideRuleOptions = "constructor" | "type-annotation";
|
|
5
3
|
type QuotesOverrideRuleOptions = "single" | "double" | "backtick";
|
|
6
4
|
type ConsistentTypeDefinitionsOverrideRuleOptions = "interface" | "type";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrewt03/eslint-typescript-rules",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"description": "Recommended ESLint Rules for general TypeScript, Node.js/Express.js, Angular, and React.js Projects",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|