@isentinel/eslint-config 6.0.0-beta.40 → 6.0.0-beta.41
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 +12 -0
- package/dist/cli.mjs +1 -1
- package/dist/index.d.mts +40 -24
- package/dist/index.mjs +75 -2
- package/dist/lint-cli.mjs +1 -1
- package/dist/oxlint.d.mts +40 -24
- package/dist/oxlint.mjs +1 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -793,9 +793,16 @@ export default isentinel({
|
|
|
793
793
|
```ts
|
|
794
794
|
const targetCFrame = new CFrame(); // ok
|
|
795
795
|
const listLayoutUIPadding = 0; // ok
|
|
796
|
+
const autoZIndex = 0; // ok - properties count, not just types
|
|
796
797
|
const target_CFrame = 0; // still an error
|
|
798
|
+
const fooXYBar = 0; // still an error - not a Roblox name
|
|
799
|
+
const colorToHSV = 0; // still an error - methods do not count, use `colorToHsv`
|
|
797
800
|
```
|
|
798
801
|
|
|
802
|
+
The generated list covers type names and data properties, not methods. A call
|
|
803
|
+
spells the API out at the call site, where the naming rules do not reach, so
|
|
804
|
+
`Color3.ToHSV` is no reason to let the variable holding its result skip them.
|
|
805
|
+
|
|
799
806
|
Pass an array to use exactly those words instead. Spread `ROBLOX_ALLOWED_WORDS`
|
|
800
807
|
to extend the list rather than replace it:
|
|
801
808
|
|
|
@@ -814,6 +821,11 @@ selector opts out with its own `allowedWords: []`. Only the two strict formats
|
|
|
814
821
|
honour it, so it can never loosen `snake_case` or `UPPER_CASE`, and a word only
|
|
815
822
|
matches at a hump boundary, so it cannot split an existing hump.
|
|
816
823
|
|
|
824
|
+
At the **start** of a `strictCamelCase` name a word also matches with its first
|
|
825
|
+
character lowercased, since that is the only spelling the format allows there —
|
|
826
|
+
`motor6DWeld` and `targetMotor6DPart` both pass. Everywhere else the word has to
|
|
827
|
+
be spelled as the API spells it, so `targetmotor6DPart` is still an error.
|
|
828
|
+
|
|
817
829
|
#### Oxlint
|
|
818
830
|
|
|
819
831
|
The config can run alongside (or be replaced by)
|
package/dist/cli.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import path from "node:path";
|
|
|
9
9
|
import { existsSync, readFileSync } from "fs";
|
|
10
10
|
import { execSync } from "node:child_process";
|
|
11
11
|
//#region package.json
|
|
12
|
-
var version = "6.0.0-beta.
|
|
12
|
+
var version = "6.0.0-beta.41";
|
|
13
13
|
var package_default = {
|
|
14
14
|
name: "@isentinel/eslint-config",
|
|
15
15
|
version,
|
package/dist/index.d.mts
CHANGED
|
@@ -7170,107 +7170,112 @@ interface RuleOptions {
|
|
|
7170
7170
|
'eslint-plugin/unique-test-case-names'?: Linter.RuleEntry<[]>;
|
|
7171
7171
|
/**
|
|
7172
7172
|
* Enforce arrow function return style based on line length
|
|
7173
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7173
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/arrow-return-style/documentation.md
|
|
7174
7174
|
*/
|
|
7175
7175
|
'flawless/arrow-return-style'?: Linter.RuleEntry<FlawlessArrowReturnStyle>;
|
|
7176
7176
|
/**
|
|
7177
7177
|
* Disallow shorthand boolean JSX attributes
|
|
7178
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7178
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/jsx-shorthand-boolean/documentation.md
|
|
7179
7179
|
*/
|
|
7180
7180
|
'flawless/jsx-shorthand-boolean'?: Linter.RuleEntry<[]>;
|
|
7181
7181
|
/**
|
|
7182
7182
|
* Enforce a consistent fragment form: the shorthand `<>...</>` or a named fragment
|
|
7183
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7183
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/jsx-shorthand-fragment/documentation.md
|
|
7184
7184
|
*/
|
|
7185
7185
|
'flawless/jsx-shorthand-fragment'?: Linter.RuleEntry<FlawlessJsxShorthandFragment>;
|
|
7186
7186
|
/**
|
|
7187
7187
|
* Enforce a maximum number of lines of code in a function
|
|
7188
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7188
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/max-lines-per-function/documentation.md
|
|
7189
7189
|
*/
|
|
7190
7190
|
'flawless/max-lines-per-function'?: Linter.RuleEntry<FlawlessMaxLinesPerFunction>;
|
|
7191
7191
|
/**
|
|
7192
7192
|
* Enforce naming conventions for everything across a codebase
|
|
7193
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7193
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/naming-convention/documentation.md
|
|
7194
7194
|
*/
|
|
7195
7195
|
'flawless/naming-convention'?: Linter.RuleEntry<FlawlessNamingConvention>;
|
|
7196
7196
|
/**
|
|
7197
7197
|
* Disallow conditional logic in tests
|
|
7198
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7198
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-conditional-in-test/documentation.md
|
|
7199
7199
|
*/
|
|
7200
7200
|
'flawless/no-conditional-in-test'?: Linter.RuleEntry<FlawlessNoConditionalInTest>;
|
|
7201
7201
|
/**
|
|
7202
7202
|
* Disallow anonymous arrow functions as export default declarations
|
|
7203
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7203
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-export-default-arrow/documentation.md
|
|
7204
7204
|
*/
|
|
7205
7205
|
'flawless/no-export-default-arrow'?: Linter.RuleEntry<[]>;
|
|
7206
7206
|
/**
|
|
7207
7207
|
* Disallow exact equality checks involving floating-point-sensitive values
|
|
7208
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7208
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-floating-point-equality/documentation.md
|
|
7209
7209
|
*/
|
|
7210
7210
|
'flawless/no-floating-point-equality'?: Linter.RuleEntry<[]>;
|
|
7211
7211
|
/**
|
|
7212
7212
|
* Disallow tsconfig options that redundantly re-set a value already provided by an extended config
|
|
7213
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7213
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-redundant-tsconfig-options/documentation.md
|
|
7214
7214
|
*/
|
|
7215
7215
|
'flawless/no-redundant-tsconfig-options'?: Linter.RuleEntry<[]>;
|
|
7216
|
+
/**
|
|
7217
|
+
* Disallow mocks created once and shared between tests
|
|
7218
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-shared-mocks/documentation.md
|
|
7219
|
+
*/
|
|
7220
|
+
'flawless/no-shared-mocks'?: Linter.RuleEntry<[]>;
|
|
7216
7221
|
/**
|
|
7217
7222
|
* Disallow unnecessary usage of 'useCallback'
|
|
7218
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7223
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-unnecessary-use-callback/documentation.md
|
|
7219
7224
|
*/
|
|
7220
7225
|
'flawless/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
|
|
7221
7226
|
/**
|
|
7222
7227
|
* Disallow unnecessary usage of 'useMemo'
|
|
7223
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7228
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-unnecessary-use-memo/documentation.md
|
|
7224
7229
|
*/
|
|
7225
7230
|
'flawless/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
|
|
7226
7231
|
/**
|
|
7227
7232
|
* Enforce a blank line after `expect.assertions` and `expect.hasAssertions`
|
|
7228
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7233
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/padding-after-expect-assertions/documentation.md
|
|
7229
7234
|
*/
|
|
7230
7235
|
'flawless/padding-after-expect-assertions'?: Linter.RuleEntry<[]>;
|
|
7231
7236
|
/**
|
|
7232
7237
|
* Enforce destructuring assignment for component props
|
|
7233
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7238
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-destructuring-assignment/documentation.md
|
|
7234
7239
|
*/
|
|
7235
7240
|
'flawless/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
|
|
7236
7241
|
/**
|
|
7237
7242
|
* Prefer having the last statement in a test be an assertion
|
|
7238
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7243
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-ending-with-an-expect/documentation.md
|
|
7239
7244
|
*/
|
|
7240
7245
|
'flawless/prefer-ending-with-an-expect'?: Linter.RuleEntry<FlawlessPreferEndingWithAnExpect>;
|
|
7241
7246
|
/**
|
|
7242
7247
|
* Prefer `expect.assertions(<count>)` over `expect.hasAssertions()`
|
|
7243
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7248
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-expect-assertions-count/documentation.md
|
|
7244
7249
|
*/
|
|
7245
7250
|
'flawless/prefer-expect-assertions-count'?: Linter.RuleEntry<[]>;
|
|
7246
7251
|
/**
|
|
7247
7252
|
* Enforce destructuring parameters in the function signature
|
|
7248
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7253
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-parameter-destructuring/documentation.md
|
|
7249
7254
|
*/
|
|
7250
7255
|
'flawless/prefer-parameter-destructuring'?: Linter.RuleEntry<FlawlessPreferParameterDestructuring>;
|
|
7251
7256
|
/**
|
|
7252
7257
|
* Enforce that function component props are read-only
|
|
7253
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7258
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-read-only-props/documentation.md
|
|
7254
7259
|
*/
|
|
7255
7260
|
'flawless/prefer-read-only-props'?: Linter.RuleEntry<FlawlessPreferReadOnlyProps>;
|
|
7256
7261
|
/**
|
|
7257
7262
|
* Disallow impure calls such as `math.random` or `os.clock` during render
|
|
7258
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7263
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/purity/documentation.md
|
|
7259
7264
|
*/
|
|
7260
7265
|
'flawless/purity'?: Linter.RuleEntry<FlawlessPurity>;
|
|
7261
7266
|
/**
|
|
7262
7267
|
* Prefer named imports for React runtime values and the React namespace for React types
|
|
7263
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7268
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/react-namespace/documentation.md
|
|
7264
7269
|
*/
|
|
7265
7270
|
'flawless/react-namespace'?: Linter.RuleEntry<[]>;
|
|
7266
7271
|
/**
|
|
7267
7272
|
* Enforce a configured sort order for TOML keys and tables
|
|
7268
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7273
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/toml-sort-keys/documentation.md
|
|
7269
7274
|
*/
|
|
7270
7275
|
'flawless/toml-sort-keys'?: Linter.RuleEntry<FlawlessTomlSortKeys>;
|
|
7271
7276
|
/**
|
|
7272
7277
|
* Enforce blank lines around top-level YAML block collection keys
|
|
7273
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
7278
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/yaml-block-key-blank-lines/documentation.md
|
|
7274
7279
|
*/
|
|
7275
7280
|
'flawless/yaml-block-key-blank-lines'?: Linter.RuleEntry<[]>;
|
|
7276
7281
|
/**
|
|
@@ -10001,7 +10006,7 @@ interface RuleOptions {
|
|
|
10001
10006
|
* Enforce that names for `scripts` are in kebab case (optionally separated by colons).
|
|
10002
10007
|
* @see https://eslint-plugin-package-json.dev/rules/scripts-name-casing
|
|
10003
10008
|
*/
|
|
10004
|
-
'package-json/scripts-name-casing'?: Linter.RuleEntry<
|
|
10009
|
+
'package-json/scripts-name-casing'?: Linter.RuleEntry<PackageJsonScriptsNameCasing>;
|
|
10005
10010
|
/**
|
|
10006
10011
|
* Selected collections must be in a consistent order (lexicographical for most; lifecycle-aware for scripts).
|
|
10007
10012
|
* @see https://eslint-plugin-package-json.dev/rules/sort-collections
|
|
@@ -17168,11 +17173,15 @@ type _FlawlessNamingConventionTypeReferenceMatcher = ({
|
|
|
17168
17173
|
[k: string]: unknown | undefined;
|
|
17169
17174
|
} | {
|
|
17170
17175
|
[k: string]: unknown | undefined;
|
|
17176
|
+
} | {
|
|
17177
|
+
[k: string]: unknown | undefined;
|
|
17171
17178
|
});
|
|
17172
17179
|
type _FlawlessNamingConvention_TypeReferenceMatcher = (({
|
|
17173
17180
|
[k: string]: unknown | undefined;
|
|
17174
17181
|
} | {
|
|
17175
17182
|
[k: string]: unknown | undefined;
|
|
17183
|
+
} | {
|
|
17184
|
+
[k: string]: unknown | undefined;
|
|
17176
17185
|
}) & {
|
|
17177
17186
|
name?: string;
|
|
17178
17187
|
from?: string;
|
|
@@ -17180,6 +17189,8 @@ type _FlawlessNamingConvention_TypeReferenceMatcher = (({
|
|
|
17180
17189
|
[k: string]: unknown | undefined;
|
|
17181
17190
|
} | {
|
|
17182
17191
|
[k: string]: unknown | undefined;
|
|
17192
|
+
} | {
|
|
17193
|
+
[k: string]: unknown | undefined;
|
|
17183
17194
|
});
|
|
17184
17195
|
});
|
|
17185
17196
|
type FlawlessNamingConvention = ({
|
|
@@ -20350,12 +20361,12 @@ type PackageJsonRestrictDependencyRanges = [] | [({
|
|
|
20350
20361
|
forDependencyTypes?: ("dependencies" | "devDependencies" | "optionalDependencies" | "peerDependencies")[];
|
|
20351
20362
|
forPackages?: string[];
|
|
20352
20363
|
forVersions?: string;
|
|
20353
|
-
rangeType: (("caret" | "pin" | "tilde") | ("caret" | "pin" | "tilde")[]);
|
|
20364
|
+
rangeType: (("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge") | ("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge")[]);
|
|
20354
20365
|
} | {
|
|
20355
20366
|
forDependencyTypes?: ("dependencies" | "devDependencies" | "optionalDependencies" | "peerDependencies")[];
|
|
20356
20367
|
forPackages?: string[];
|
|
20357
20368
|
forVersions?: string;
|
|
20358
|
-
rangeType: (("caret" | "pin" | "tilde") | ("caret" | "pin" | "tilde")[]);
|
|
20369
|
+
rangeType: (("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge") | ("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge")[]);
|
|
20359
20370
|
}[])];
|
|
20360
20371
|
// ----- package-json/restrict-private-properties -----
|
|
20361
20372
|
type PackageJsonRestrictPrivateProperties = [] | [{
|
|
@@ -20368,6 +20379,11 @@ type PackageJsonRestrictTopLevelProperties = [] | [{
|
|
|
20368
20379
|
property: string;
|
|
20369
20380
|
})[];
|
|
20370
20381
|
}];
|
|
20382
|
+
// ----- package-json/scripts-name-casing -----
|
|
20383
|
+
type PackageJsonScriptsNameCasing = [] | [{
|
|
20384
|
+
ignoreNames?: string[];
|
|
20385
|
+
ignorePatterns?: string[];
|
|
20386
|
+
}];
|
|
20371
20387
|
// ----- package-json/sort-collections -----
|
|
20372
20388
|
type PackageJsonSortCollections = [] | [(string | {
|
|
20373
20389
|
key: string;
|
package/dist/index.mjs
CHANGED
|
@@ -2694,36 +2694,87 @@ const ROBLOX_ALLOWED_WORDS = [
|
|
|
2694
2694
|
"AdUIEventType",
|
|
2695
2695
|
"AdUIType",
|
|
2696
2696
|
"AnimationNodeBlend2DInputMode",
|
|
2697
|
+
"BackParamA",
|
|
2698
|
+
"BackParamB",
|
|
2699
|
+
"BottomParamA",
|
|
2700
|
+
"BottomParamB",
|
|
2701
|
+
"BoundingUI",
|
|
2697
2702
|
"CFrame",
|
|
2703
|
+
"CageUVMatched",
|
|
2704
|
+
"CageUVMisMatchedPreview",
|
|
2698
2705
|
"CloudCRUDService",
|
|
2699
2706
|
"CreationDBService",
|
|
2700
2707
|
"CrossDMScriptChangeListener",
|
|
2708
|
+
"CurDocGUID",
|
|
2709
|
+
"CustomizedTeleportUI",
|
|
2701
2710
|
"DebuggerUIService",
|
|
2711
|
+
"EnableLOD",
|
|
2702
2712
|
"FACSDataLod",
|
|
2713
|
+
"FlipbookSizeX",
|
|
2714
|
+
"FlipbookSizeY",
|
|
2715
|
+
"FloatingXSize",
|
|
2716
|
+
"FloatingYSize",
|
|
2717
|
+
"FrontParamA",
|
|
2718
|
+
"FrontParamB",
|
|
2719
|
+
"GraphicTShirt",
|
|
2703
2720
|
"IKCollisionsMode",
|
|
2704
2721
|
"IKControl",
|
|
2705
2722
|
"ILegacyStudioBridge",
|
|
2706
2723
|
"IXPLoadingStatus",
|
|
2707
2724
|
"IXPService",
|
|
2725
|
+
"LODCriticality",
|
|
2726
|
+
"LODLevel",
|
|
2727
|
+
"LeftParamA",
|
|
2728
|
+
"LeftParamB",
|
|
2708
2729
|
"MLModelDeliveryService",
|
|
2709
2730
|
"MLService",
|
|
2710
2731
|
"MLSession",
|
|
2732
|
+
"MinimumDeltaEBodyColorDifference",
|
|
2733
|
+
"Motor6D",
|
|
2734
|
+
"NearPlaneZ",
|
|
2735
|
+
"OffsetStudsU",
|
|
2736
|
+
"OffsetStudsV",
|
|
2711
2737
|
"PVAdornment",
|
|
2712
2738
|
"PVInstance",
|
|
2713
2739
|
"PackageUIService",
|
|
2714
|
-
"
|
|
2740
|
+
"Path2D",
|
|
2741
|
+
"Path3D",
|
|
2715
2742
|
"QDir",
|
|
2716
2743
|
"QFont",
|
|
2717
2744
|
"RBXObject",
|
|
2718
2745
|
"RBXScriptConnection",
|
|
2719
2746
|
"RBXScriptSignal",
|
|
2747
|
+
"RCCProfilerRecordFrameRate",
|
|
2748
|
+
"RCCProfilerRecordTimeFrame",
|
|
2720
2749
|
"RTAnimationTracker",
|
|
2750
|
+
"ReferenceUIInstance",
|
|
2751
|
+
"RenderCPUFrameTime",
|
|
2752
|
+
"RenderGPUFrameTime",
|
|
2753
|
+
"RightParamA",
|
|
2754
|
+
"RightParamB",
|
|
2755
|
+
"RotateP",
|
|
2756
|
+
"RotateV",
|
|
2757
|
+
"StudsPerTileU",
|
|
2758
|
+
"StudsPerTileV",
|
|
2721
2759
|
"TextXAlignment",
|
|
2722
2760
|
"TextYAlignment",
|
|
2761
|
+
"TextureID",
|
|
2762
|
+
"ThrustD",
|
|
2763
|
+
"ThrustP",
|
|
2764
|
+
"TopP",
|
|
2765
|
+
"TopParamA",
|
|
2766
|
+
"TopParamB",
|
|
2767
|
+
"TurnD",
|
|
2768
|
+
"TurnP",
|
|
2723
2769
|
"UDim",
|
|
2724
2770
|
"UGCAvatarService",
|
|
2771
|
+
"UI2DDrawcallCount",
|
|
2772
|
+
"UI2DTriangleCount",
|
|
2773
|
+
"UI3DDrawcallCount",
|
|
2774
|
+
"UI3DTriangleCount",
|
|
2725
2775
|
"UIAspectRatioConstraint",
|
|
2726
2776
|
"UIBase",
|
|
2777
|
+
"UIButton",
|
|
2727
2778
|
"UICaptureMode",
|
|
2728
2779
|
"UIComponent",
|
|
2729
2780
|
"UIConstraint",
|
|
@@ -2738,6 +2789,8 @@ const ROBLOX_ALLOWED_WORDS = [
|
|
|
2738
2789
|
"UIGridStyleLayout",
|
|
2739
2790
|
"UILayout",
|
|
2740
2791
|
"UIListLayout",
|
|
2792
|
+
"UIModifier",
|
|
2793
|
+
"UIOffset",
|
|
2741
2794
|
"UIPadding",
|
|
2742
2795
|
"UIPageLayout",
|
|
2743
2796
|
"UIScale",
|
|
@@ -2747,17 +2800,36 @@ const ROBLOX_ALLOWED_WORDS = [
|
|
|
2747
2800
|
"UITableLayout",
|
|
2748
2801
|
"UITextSizeConstraint",
|
|
2749
2802
|
"UITheme",
|
|
2803
|
+
"UVMaxBound",
|
|
2804
|
+
"UVMinBound",
|
|
2805
|
+
"UVOffset",
|
|
2806
|
+
"UVScale",
|
|
2807
|
+
"VIPServerId",
|
|
2808
|
+
"VIPServerOwnerId",
|
|
2750
2809
|
"VRComfortSetting",
|
|
2751
2810
|
"VRControllerModelMode",
|
|
2752
2811
|
"VRDeviceType",
|
|
2812
|
+
"VREnableControllerModels",
|
|
2813
|
+
"VREnabled",
|
|
2753
2814
|
"VRLaserPointerMode",
|
|
2815
|
+
"VRRotationIntensity",
|
|
2754
2816
|
"VRSafetyBubbleMode",
|
|
2755
2817
|
"VRScaling",
|
|
2756
2818
|
"VRService",
|
|
2757
2819
|
"VRSessionState",
|
|
2758
2820
|
"VRStatusService",
|
|
2821
|
+
"VRSwitchKeyCode",
|
|
2822
|
+
"VRTiltAndRollEnabled",
|
|
2759
2823
|
"VRTouchpad",
|
|
2760
|
-
"
|
|
2824
|
+
"ViewSizeX",
|
|
2825
|
+
"ViewSizeY",
|
|
2826
|
+
"XVector",
|
|
2827
|
+
"YVector",
|
|
2828
|
+
"ZIndex",
|
|
2829
|
+
"ZOffset",
|
|
2830
|
+
"ZVector",
|
|
2831
|
+
"floatXSize",
|
|
2832
|
+
"floatYSize"
|
|
2761
2833
|
];
|
|
2762
2834
|
//#endregion
|
|
2763
2835
|
//#region src/eslint/configs/naming.ts
|
|
@@ -15934,6 +16006,7 @@ var init_oxlint_capabilities = __esmMin((() => {
|
|
|
15934
16006
|
"flawless/no-export-default-arrow",
|
|
15935
16007
|
"flawless/no-floating-point-equality",
|
|
15936
16008
|
"flawless/no-redundant-tsconfig-options",
|
|
16009
|
+
"flawless/no-shared-mocks",
|
|
15937
16010
|
"flawless/no-unnecessary-use-callback",
|
|
15938
16011
|
"flawless/no-unnecessary-use-memo",
|
|
15939
16012
|
"flawless/padding-after-expect-assertions",
|
package/dist/lint-cli.mjs
CHANGED
|
@@ -38,7 +38,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
38
38
|
}) : target, mod));
|
|
39
39
|
//#endregion
|
|
40
40
|
//#region package.json
|
|
41
|
-
var version = "6.0.0-beta.
|
|
41
|
+
var version = "6.0.0-beta.41";
|
|
42
42
|
//#endregion
|
|
43
43
|
//#region src/lint-cli/lib/cli/types.ts
|
|
44
44
|
/**
|
package/dist/oxlint.d.mts
CHANGED
|
@@ -4487,107 +4487,112 @@ interface RuleOptions {
|
|
|
4487
4487
|
'eslint-plugin/unique-test-case-names'?: Linter.RuleEntry<[]>;
|
|
4488
4488
|
/**
|
|
4489
4489
|
* Enforce arrow function return style based on line length
|
|
4490
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4490
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/arrow-return-style/documentation.md
|
|
4491
4491
|
*/
|
|
4492
4492
|
'flawless/arrow-return-style'?: Linter.RuleEntry<FlawlessArrowReturnStyle>;
|
|
4493
4493
|
/**
|
|
4494
4494
|
* Disallow shorthand boolean JSX attributes
|
|
4495
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4495
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/jsx-shorthand-boolean/documentation.md
|
|
4496
4496
|
*/
|
|
4497
4497
|
'flawless/jsx-shorthand-boolean'?: Linter.RuleEntry<[]>;
|
|
4498
4498
|
/**
|
|
4499
4499
|
* Enforce a consistent fragment form: the shorthand `<>...</>` or a named fragment
|
|
4500
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4500
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/jsx-shorthand-fragment/documentation.md
|
|
4501
4501
|
*/
|
|
4502
4502
|
'flawless/jsx-shorthand-fragment'?: Linter.RuleEntry<FlawlessJsxShorthandFragment>;
|
|
4503
4503
|
/**
|
|
4504
4504
|
* Enforce a maximum number of lines of code in a function
|
|
4505
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4505
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/max-lines-per-function/documentation.md
|
|
4506
4506
|
*/
|
|
4507
4507
|
'flawless/max-lines-per-function'?: Linter.RuleEntry<FlawlessMaxLinesPerFunction>;
|
|
4508
4508
|
/**
|
|
4509
4509
|
* Enforce naming conventions for everything across a codebase
|
|
4510
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4510
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/naming-convention/documentation.md
|
|
4511
4511
|
*/
|
|
4512
4512
|
'flawless/naming-convention'?: Linter.RuleEntry<FlawlessNamingConvention>;
|
|
4513
4513
|
/**
|
|
4514
4514
|
* Disallow conditional logic in tests
|
|
4515
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4515
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-conditional-in-test/documentation.md
|
|
4516
4516
|
*/
|
|
4517
4517
|
'flawless/no-conditional-in-test'?: Linter.RuleEntry<FlawlessNoConditionalInTest>;
|
|
4518
4518
|
/**
|
|
4519
4519
|
* Disallow anonymous arrow functions as export default declarations
|
|
4520
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4520
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-export-default-arrow/documentation.md
|
|
4521
4521
|
*/
|
|
4522
4522
|
'flawless/no-export-default-arrow'?: Linter.RuleEntry<[]>;
|
|
4523
4523
|
/**
|
|
4524
4524
|
* Disallow exact equality checks involving floating-point-sensitive values
|
|
4525
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4525
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-floating-point-equality/documentation.md
|
|
4526
4526
|
*/
|
|
4527
4527
|
'flawless/no-floating-point-equality'?: Linter.RuleEntry<[]>;
|
|
4528
4528
|
/**
|
|
4529
4529
|
* Disallow tsconfig options that redundantly re-set a value already provided by an extended config
|
|
4530
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4530
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-redundant-tsconfig-options/documentation.md
|
|
4531
4531
|
*/
|
|
4532
4532
|
'flawless/no-redundant-tsconfig-options'?: Linter.RuleEntry<[]>;
|
|
4533
|
+
/**
|
|
4534
|
+
* Disallow mocks created once and shared between tests
|
|
4535
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-shared-mocks/documentation.md
|
|
4536
|
+
*/
|
|
4537
|
+
'flawless/no-shared-mocks'?: Linter.RuleEntry<[]>;
|
|
4533
4538
|
/**
|
|
4534
4539
|
* Disallow unnecessary usage of 'useCallback'
|
|
4535
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4540
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-unnecessary-use-callback/documentation.md
|
|
4536
4541
|
*/
|
|
4537
4542
|
'flawless/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
|
|
4538
4543
|
/**
|
|
4539
4544
|
* Disallow unnecessary usage of 'useMemo'
|
|
4540
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4545
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/no-unnecessary-use-memo/documentation.md
|
|
4541
4546
|
*/
|
|
4542
4547
|
'flawless/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
|
|
4543
4548
|
/**
|
|
4544
4549
|
* Enforce a blank line after `expect.assertions` and `expect.hasAssertions`
|
|
4545
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4550
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/padding-after-expect-assertions/documentation.md
|
|
4546
4551
|
*/
|
|
4547
4552
|
'flawless/padding-after-expect-assertions'?: Linter.RuleEntry<[]>;
|
|
4548
4553
|
/**
|
|
4549
4554
|
* Enforce destructuring assignment for component props
|
|
4550
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4555
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-destructuring-assignment/documentation.md
|
|
4551
4556
|
*/
|
|
4552
4557
|
'flawless/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
|
|
4553
4558
|
/**
|
|
4554
4559
|
* Prefer having the last statement in a test be an assertion
|
|
4555
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4560
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-ending-with-an-expect/documentation.md
|
|
4556
4561
|
*/
|
|
4557
4562
|
'flawless/prefer-ending-with-an-expect'?: Linter.RuleEntry<FlawlessPreferEndingWithAnExpect>;
|
|
4558
4563
|
/**
|
|
4559
4564
|
* Prefer `expect.assertions(<count>)` over `expect.hasAssertions()`
|
|
4560
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4565
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-expect-assertions-count/documentation.md
|
|
4561
4566
|
*/
|
|
4562
4567
|
'flawless/prefer-expect-assertions-count'?: Linter.RuleEntry<[]>;
|
|
4563
4568
|
/**
|
|
4564
4569
|
* Enforce destructuring parameters in the function signature
|
|
4565
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4570
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-parameter-destructuring/documentation.md
|
|
4566
4571
|
*/
|
|
4567
4572
|
'flawless/prefer-parameter-destructuring'?: Linter.RuleEntry<FlawlessPreferParameterDestructuring>;
|
|
4568
4573
|
/**
|
|
4569
4574
|
* Enforce that function component props are read-only
|
|
4570
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4575
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/prefer-read-only-props/documentation.md
|
|
4571
4576
|
*/
|
|
4572
4577
|
'flawless/prefer-read-only-props'?: Linter.RuleEntry<FlawlessPreferReadOnlyProps>;
|
|
4573
4578
|
/**
|
|
4574
4579
|
* Disallow impure calls such as `math.random` or `os.clock` during render
|
|
4575
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4580
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/purity/documentation.md
|
|
4576
4581
|
*/
|
|
4577
4582
|
'flawless/purity'?: Linter.RuleEntry<FlawlessPurity>;
|
|
4578
4583
|
/**
|
|
4579
4584
|
* Prefer named imports for React runtime values and the React namespace for React types
|
|
4580
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4585
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/react-namespace/documentation.md
|
|
4581
4586
|
*/
|
|
4582
4587
|
'flawless/react-namespace'?: Linter.RuleEntry<[]>;
|
|
4583
4588
|
/**
|
|
4584
4589
|
* Enforce a configured sort order for TOML keys and tables
|
|
4585
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4590
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/toml-sort-keys/documentation.md
|
|
4586
4591
|
*/
|
|
4587
4592
|
'flawless/toml-sort-keys'?: Linter.RuleEntry<FlawlessTomlSortKeys>;
|
|
4588
4593
|
/**
|
|
4589
4594
|
* Enforce blank lines around top-level YAML block collection keys
|
|
4590
|
-
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.
|
|
4595
|
+
* @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.9.0/src/rules/yaml-block-key-blank-lines/documentation.md
|
|
4591
4596
|
*/
|
|
4592
4597
|
'flawless/yaml-block-key-blank-lines'?: Linter.RuleEntry<[]>;
|
|
4593
4598
|
/**
|
|
@@ -7318,7 +7323,7 @@ interface RuleOptions {
|
|
|
7318
7323
|
* Enforce that names for `scripts` are in kebab case (optionally separated by colons).
|
|
7319
7324
|
* @see https://eslint-plugin-package-json.dev/rules/scripts-name-casing
|
|
7320
7325
|
*/
|
|
7321
|
-
'package-json/scripts-name-casing'?: Linter.RuleEntry<
|
|
7326
|
+
'package-json/scripts-name-casing'?: Linter.RuleEntry<PackageJsonScriptsNameCasing>;
|
|
7322
7327
|
/**
|
|
7323
7328
|
* Selected collections must be in a consistent order (lexicographical for most; lifecycle-aware for scripts).
|
|
7324
7329
|
* @see https://eslint-plugin-package-json.dev/rules/sort-collections
|
|
@@ -14485,11 +14490,15 @@ type _FlawlessNamingConventionTypeReferenceMatcher = ({
|
|
|
14485
14490
|
[k: string]: unknown | undefined;
|
|
14486
14491
|
} | {
|
|
14487
14492
|
[k: string]: unknown | undefined;
|
|
14493
|
+
} | {
|
|
14494
|
+
[k: string]: unknown | undefined;
|
|
14488
14495
|
});
|
|
14489
14496
|
type _FlawlessNamingConvention_TypeReferenceMatcher = (({
|
|
14490
14497
|
[k: string]: unknown | undefined;
|
|
14491
14498
|
} | {
|
|
14492
14499
|
[k: string]: unknown | undefined;
|
|
14500
|
+
} | {
|
|
14501
|
+
[k: string]: unknown | undefined;
|
|
14493
14502
|
}) & {
|
|
14494
14503
|
name?: string;
|
|
14495
14504
|
from?: string;
|
|
@@ -14497,6 +14506,8 @@ type _FlawlessNamingConvention_TypeReferenceMatcher = (({
|
|
|
14497
14506
|
[k: string]: unknown | undefined;
|
|
14498
14507
|
} | {
|
|
14499
14508
|
[k: string]: unknown | undefined;
|
|
14509
|
+
} | {
|
|
14510
|
+
[k: string]: unknown | undefined;
|
|
14500
14511
|
});
|
|
14501
14512
|
});
|
|
14502
14513
|
type FlawlessNamingConvention = ({
|
|
@@ -17667,12 +17678,12 @@ type PackageJsonRestrictDependencyRanges = [] | [({
|
|
|
17667
17678
|
forDependencyTypes?: ("dependencies" | "devDependencies" | "optionalDependencies" | "peerDependencies")[];
|
|
17668
17679
|
forPackages?: string[];
|
|
17669
17680
|
forVersions?: string;
|
|
17670
|
-
rangeType: (("caret" | "pin" | "tilde") | ("caret" | "pin" | "tilde")[]);
|
|
17681
|
+
rangeType: (("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge") | ("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge")[]);
|
|
17671
17682
|
} | {
|
|
17672
17683
|
forDependencyTypes?: ("dependencies" | "devDependencies" | "optionalDependencies" | "peerDependencies")[];
|
|
17673
17684
|
forPackages?: string[];
|
|
17674
17685
|
forVersions?: string;
|
|
17675
|
-
rangeType: (("caret" | "pin" | "tilde") | ("caret" | "pin" | "tilde")[]);
|
|
17686
|
+
rangeType: (("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge") | ("^" | "~" | "<" | "<=" | ">" | ">=" | "caret" | "pin" | "tilde" | "lt" | "le" | "gt" | "ge")[]);
|
|
17676
17687
|
}[])];
|
|
17677
17688
|
// ----- package-json/restrict-private-properties -----
|
|
17678
17689
|
type PackageJsonRestrictPrivateProperties = [] | [{
|
|
@@ -17685,6 +17696,11 @@ type PackageJsonRestrictTopLevelProperties = [] | [{
|
|
|
17685
17696
|
property: string;
|
|
17686
17697
|
})[];
|
|
17687
17698
|
}];
|
|
17699
|
+
// ----- package-json/scripts-name-casing -----
|
|
17700
|
+
type PackageJsonScriptsNameCasing = [] | [{
|
|
17701
|
+
ignoreNames?: string[];
|
|
17702
|
+
ignorePatterns?: string[];
|
|
17703
|
+
}];
|
|
17688
17704
|
// ----- package-json/sort-collections -----
|
|
17689
17705
|
type PackageJsonSortCollections = [] | [(string | {
|
|
17690
17706
|
key: string;
|
package/dist/oxlint.mjs
CHANGED
|
@@ -139,6 +139,7 @@ const jsPluginRuleNames = /* @__PURE__ */ new Set([
|
|
|
139
139
|
"flawless/no-export-default-arrow",
|
|
140
140
|
"flawless/no-floating-point-equality",
|
|
141
141
|
"flawless/no-redundant-tsconfig-options",
|
|
142
|
+
"flawless/no-shared-mocks",
|
|
142
143
|
"flawless/no-unnecessary-use-callback",
|
|
143
144
|
"flawless/no-unnecessary-use-memo",
|
|
144
145
|
"flawless/padding-after-expect-assertions",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@isentinel/eslint-config",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.41",
|
|
4
4
|
"description": "iSentinel's ESLint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint-config",
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
"eslint-plugin-better-max-params": "1.0.0",
|
|
77
77
|
"eslint-plugin-comment-length": "2.3.1",
|
|
78
78
|
"eslint-plugin-de-morgan": "2.1.3",
|
|
79
|
-
"eslint-plugin-flawless": "1.
|
|
79
|
+
"eslint-plugin-flawless": "1.9.0",
|
|
80
80
|
"eslint-plugin-format-lua": "2.0.0",
|
|
81
81
|
"eslint-plugin-import-lite": "0.6.0",
|
|
82
82
|
"eslint-plugin-jsdoc": "63.2.2",
|
|
83
83
|
"eslint-plugin-jsonc": "3.3.0",
|
|
84
84
|
"eslint-plugin-oxfmt": "0.15.0",
|
|
85
|
-
"eslint-plugin-package-json": "1.
|
|
86
|
-
"eslint-plugin-perfectionist": "5.10.
|
|
85
|
+
"eslint-plugin-package-json": "1.7.0",
|
|
86
|
+
"eslint-plugin-perfectionist": "5.10.1",
|
|
87
87
|
"eslint-plugin-pnpm": "1.7.0",
|
|
88
88
|
"eslint-plugin-promise": "7.3.0",
|
|
89
89
|
"eslint-plugin-roblox-ts": "1.4.1",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"@types/picomatch": "4.0.3",
|
|
121
121
|
"@types/semver": "7.7.1",
|
|
122
122
|
"@types/yargs": "17.0.35",
|
|
123
|
-
"@vitest/eslint-plugin": "1.6.
|
|
123
|
+
"@vitest/eslint-plugin": "1.6.26",
|
|
124
124
|
"bumpp": "12.0.0",
|
|
125
125
|
"eslint": "10.7.0",
|
|
126
126
|
"eslint-plugin-erasable-syntax-only": "0.4.2",
|
|
@@ -139,12 +139,12 @@
|
|
|
139
139
|
"parse-gitignore-ts": "1.0.0",
|
|
140
140
|
"picomatch": "4.0.5",
|
|
141
141
|
"pnpm-workspace-yaml": "1.7.0",
|
|
142
|
-
"publint": "0.3.
|
|
142
|
+
"publint": "0.3.23",
|
|
143
143
|
"tsdown": "0.22.14",
|
|
144
144
|
"typescript": "6.0.3",
|
|
145
145
|
"unplugin-unused": "0.5.7",
|
|
146
146
|
"vitest": "4.1.10",
|
|
147
|
-
"@isentinel/eslint-config": "6.0.0-beta.
|
|
147
|
+
"@isentinel/eslint-config": "6.0.0-beta.41"
|
|
148
148
|
},
|
|
149
149
|
"peerDependencies": {
|
|
150
150
|
"@vitest/eslint-plugin": "^1.6.4",
|