@isentinel/eslint-config 6.0.0-beta.28 → 6.0.0-beta.29

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/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.28";
12
+ var version = "6.0.0-beta.29";
13
13
  var package_default = {
14
14
  name: "@isentinel/eslint-config",
15
15
  version,
package/dist/index.d.mts CHANGED
@@ -478,7 +478,7 @@ interface JsoncRuleDefaults {
478
478
  "*": "off";
479
479
  };
480
480
  "sonar/no-dead-store": {
481
- "*": "error";
481
+ "*": "off";
482
482
  };
483
483
  "sonar/no-default-utility-imports": {
484
484
  game_std: "error";
@@ -2329,7 +2329,7 @@ interface MainRuleDefaults {
2329
2329
  "*": "off";
2330
2330
  };
2331
2331
  "sonar/no-dead-store": {
2332
- "*": "error";
2332
+ "*": "off";
2333
2333
  };
2334
2334
  "sonar/no-default-utility-imports": {
2335
2335
  game_std: "error";
@@ -5868,7 +5868,7 @@ interface TomlRuleDefaults {
5868
5868
  "*": "off";
5869
5869
  };
5870
5870
  "sonar/no-dead-store": {
5871
- "*": "error";
5871
+ "*": "off";
5872
5872
  };
5873
5873
  "sonar/no-default-utility-imports": {
5874
5874
  game_std: "error";
@@ -6183,7 +6183,7 @@ interface YamlRuleDefaults {
6183
6183
  "*": "off";
6184
6184
  };
6185
6185
  "sonar/no-dead-store": {
6186
- "*": "error";
6186
+ "*": "off";
6187
6187
  };
6188
6188
  "sonar/no-default-utility-imports": {
6189
6189
  game_std: "error";
@@ -7092,102 +7092,102 @@ interface RuleOptions {
7092
7092
  'eslint-plugin/unique-test-case-names'?: Linter.RuleEntry<[]>;
7093
7093
  /**
7094
7094
  * Enforce arrow function return style based on line length
7095
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/arrow-return-style/documentation.md
7095
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/arrow-return-style/documentation.md
7096
7096
  */
7097
7097
  'flawless/arrow-return-style'?: Linter.RuleEntry<FlawlessArrowReturnStyle>;
7098
7098
  /**
7099
7099
  * Disallow shorthand boolean JSX attributes
7100
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/jsx-shorthand-boolean/documentation.md
7100
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/jsx-shorthand-boolean/documentation.md
7101
7101
  */
7102
7102
  'flawless/jsx-shorthand-boolean'?: Linter.RuleEntry<[]>;
7103
7103
  /**
7104
7104
  * Enforce a consistent fragment form: the shorthand `<>...</>` or a named fragment
7105
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/jsx-shorthand-fragment/documentation.md
7105
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/jsx-shorthand-fragment/documentation.md
7106
7106
  */
7107
7107
  'flawless/jsx-shorthand-fragment'?: Linter.RuleEntry<FlawlessJsxShorthandFragment>;
7108
7108
  /**
7109
7109
  * Enforce a maximum number of lines of code in a function
7110
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/max-lines-per-function/documentation.md
7110
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/max-lines-per-function/documentation.md
7111
7111
  */
7112
7112
  'flawless/max-lines-per-function'?: Linter.RuleEntry<FlawlessMaxLinesPerFunction>;
7113
7113
  /**
7114
7114
  * Enforce naming conventions for everything across a codebase
7115
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/naming-convention/documentation.md
7115
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/naming-convention/documentation.md
7116
7116
  */
7117
7117
  'flawless/naming-convention'?: Linter.RuleEntry<FlawlessNamingConvention>;
7118
7118
  /**
7119
7119
  * Disallow conditional logic in tests
7120
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-conditional-in-test/documentation.md
7120
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-conditional-in-test/documentation.md
7121
7121
  */
7122
7122
  'flawless/no-conditional-in-test'?: Linter.RuleEntry<FlawlessNoConditionalInTest>;
7123
7123
  /**
7124
7124
  * Disallow anonymous arrow functions as export default declarations
7125
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-export-default-arrow/documentation.md
7125
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-export-default-arrow/documentation.md
7126
7126
  */
7127
7127
  'flawless/no-export-default-arrow'?: Linter.RuleEntry<[]>;
7128
7128
  /**
7129
7129
  * Disallow tsconfig options that redundantly re-set a value already provided by an extended config
7130
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-redundant-tsconfig-options/documentation.md
7130
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-redundant-tsconfig-options/documentation.md
7131
7131
  */
7132
7132
  'flawless/no-redundant-tsconfig-options'?: Linter.RuleEntry<[]>;
7133
7133
  /**
7134
7134
  * Disallow unnecessary usage of 'useCallback'
7135
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-unnecessary-use-callback/documentation.md
7135
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-unnecessary-use-callback/documentation.md
7136
7136
  */
7137
7137
  'flawless/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
7138
7138
  /**
7139
7139
  * Disallow unnecessary usage of 'useMemo'
7140
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-unnecessary-use-memo/documentation.md
7140
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-unnecessary-use-memo/documentation.md
7141
7141
  */
7142
7142
  'flawless/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
7143
7143
  /**
7144
7144
  * Enforce a blank line after `expect.assertions` and `expect.hasAssertions`
7145
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/padding-after-expect-assertions/documentation.md
7145
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/padding-after-expect-assertions/documentation.md
7146
7146
  */
7147
7147
  'flawless/padding-after-expect-assertions'?: Linter.RuleEntry<[]>;
7148
7148
  /**
7149
7149
  * Enforce destructuring assignment for component props
7150
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-destructuring-assignment/documentation.md
7150
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-destructuring-assignment/documentation.md
7151
7151
  */
7152
7152
  'flawless/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
7153
7153
  /**
7154
7154
  * Prefer having the last statement in a test be an assertion
7155
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-ending-with-an-expect/documentation.md
7155
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-ending-with-an-expect/documentation.md
7156
7156
  */
7157
7157
  'flawless/prefer-ending-with-an-expect'?: Linter.RuleEntry<FlawlessPreferEndingWithAnExpect>;
7158
7158
  /**
7159
7159
  * Prefer `expect.assertions(<count>)` over `expect.hasAssertions()`
7160
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-expect-assertions-count/documentation.md
7160
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-expect-assertions-count/documentation.md
7161
7161
  */
7162
7162
  'flawless/prefer-expect-assertions-count'?: Linter.RuleEntry<[]>;
7163
7163
  /**
7164
7164
  * Enforce destructuring parameters in the function signature
7165
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-parameter-destructuring/documentation.md
7165
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-parameter-destructuring/documentation.md
7166
7166
  */
7167
7167
  'flawless/prefer-parameter-destructuring'?: Linter.RuleEntry<FlawlessPreferParameterDestructuring>;
7168
7168
  /**
7169
7169
  * Enforce that function component props are read-only
7170
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-read-only-props/documentation.md
7170
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-read-only-props/documentation.md
7171
7171
  */
7172
7172
  'flawless/prefer-read-only-props'?: Linter.RuleEntry<FlawlessPreferReadOnlyProps>;
7173
7173
  /**
7174
7174
  * Disallow impure calls such as `math.random` or `os.clock` during render
7175
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/purity/documentation.md
7175
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/purity/documentation.md
7176
7176
  */
7177
7177
  'flawless/purity'?: Linter.RuleEntry<FlawlessPurity>;
7178
7178
  /**
7179
7179
  * Prefer named imports for React runtime values and the React namespace for React types
7180
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/react-namespace/documentation.md
7180
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/react-namespace/documentation.md
7181
7181
  */
7182
7182
  'flawless/react-namespace'?: Linter.RuleEntry<[]>;
7183
7183
  /**
7184
7184
  * Enforce a configured sort order for TOML keys and tables
7185
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/toml-sort-keys/documentation.md
7185
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/toml-sort-keys/documentation.md
7186
7186
  */
7187
7187
  'flawless/toml-sort-keys'?: Linter.RuleEntry<FlawlessTomlSortKeys>;
7188
7188
  /**
7189
7189
  * Enforce blank lines around top-level YAML block collection keys
7190
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/yaml-block-key-blank-lines/documentation.md
7190
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/yaml-block-key-blank-lines/documentation.md
7191
7191
  */
7192
7192
  'flawless/yaml-block-key-blank-lines'?: Linter.RuleEntry<[]>;
7193
7193
  /**
package/dist/index.mjs CHANGED
@@ -3995,7 +3995,7 @@ function sonarjsRules({ isInEditor, roblox = true }) {
3995
3995
  "sonar/no-all-duplicated-branches": "error",
3996
3996
  "sonar/no-collapsible-if": "error",
3997
3997
  "sonar/no-commented-code": "off",
3998
- "sonar/no-dead-store": "error",
3998
+ "sonar/no-dead-store": "off",
3999
3999
  "sonar/no-duplicate-string": ["error", { ignoreStrings: "Not implemented" }],
4000
4000
  "sonar/no-duplicated-branches": "error",
4001
4001
  "sonar/no-element-overwrite": "error",
package/dist/lint-cli.mjs CHANGED
@@ -36,7 +36,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
36
36
  }) : target, mod));
37
37
  //#endregion
38
38
  //#region package.json
39
- var version = "6.0.0-beta.28";
39
+ var version = "6.0.0-beta.29";
40
40
  //#endregion
41
41
  //#region src/lint-cli/lib/cli/types.ts
42
42
  /**
package/dist/oxlint.d.mts CHANGED
@@ -1567,7 +1567,7 @@ interface OxlintMainRuleDefaults {
1567
1567
  "*": "error";
1568
1568
  };
1569
1569
  "sonar/no-dead-store": {
1570
- "*": "error";
1570
+ "*": "off";
1571
1571
  };
1572
1572
  "sonar/no-default-utility-imports": {
1573
1573
  game_std: "error";
@@ -4280,102 +4280,102 @@ interface RuleOptions {
4280
4280
  'eslint-plugin/unique-test-case-names'?: Linter.RuleEntry<[]>;
4281
4281
  /**
4282
4282
  * Enforce arrow function return style based on line length
4283
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/arrow-return-style/documentation.md
4283
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/arrow-return-style/documentation.md
4284
4284
  */
4285
4285
  'flawless/arrow-return-style'?: Linter.RuleEntry<FlawlessArrowReturnStyle>;
4286
4286
  /**
4287
4287
  * Disallow shorthand boolean JSX attributes
4288
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/jsx-shorthand-boolean/documentation.md
4288
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/jsx-shorthand-boolean/documentation.md
4289
4289
  */
4290
4290
  'flawless/jsx-shorthand-boolean'?: Linter.RuleEntry<[]>;
4291
4291
  /**
4292
4292
  * Enforce a consistent fragment form: the shorthand `<>...</>` or a named fragment
4293
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/jsx-shorthand-fragment/documentation.md
4293
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/jsx-shorthand-fragment/documentation.md
4294
4294
  */
4295
4295
  'flawless/jsx-shorthand-fragment'?: Linter.RuleEntry<FlawlessJsxShorthandFragment>;
4296
4296
  /**
4297
4297
  * Enforce a maximum number of lines of code in a function
4298
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/max-lines-per-function/documentation.md
4298
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/max-lines-per-function/documentation.md
4299
4299
  */
4300
4300
  'flawless/max-lines-per-function'?: Linter.RuleEntry<FlawlessMaxLinesPerFunction>;
4301
4301
  /**
4302
4302
  * Enforce naming conventions for everything across a codebase
4303
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/naming-convention/documentation.md
4303
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/naming-convention/documentation.md
4304
4304
  */
4305
4305
  'flawless/naming-convention'?: Linter.RuleEntry<FlawlessNamingConvention>;
4306
4306
  /**
4307
4307
  * Disallow conditional logic in tests
4308
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-conditional-in-test/documentation.md
4308
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-conditional-in-test/documentation.md
4309
4309
  */
4310
4310
  'flawless/no-conditional-in-test'?: Linter.RuleEntry<FlawlessNoConditionalInTest>;
4311
4311
  /**
4312
4312
  * Disallow anonymous arrow functions as export default declarations
4313
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-export-default-arrow/documentation.md
4313
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-export-default-arrow/documentation.md
4314
4314
  */
4315
4315
  'flawless/no-export-default-arrow'?: Linter.RuleEntry<[]>;
4316
4316
  /**
4317
4317
  * Disallow tsconfig options that redundantly re-set a value already provided by an extended config
4318
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-redundant-tsconfig-options/documentation.md
4318
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-redundant-tsconfig-options/documentation.md
4319
4319
  */
4320
4320
  'flawless/no-redundant-tsconfig-options'?: Linter.RuleEntry<[]>;
4321
4321
  /**
4322
4322
  * Disallow unnecessary usage of 'useCallback'
4323
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-unnecessary-use-callback/documentation.md
4323
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-unnecessary-use-callback/documentation.md
4324
4324
  */
4325
4325
  'flawless/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
4326
4326
  /**
4327
4327
  * Disallow unnecessary usage of 'useMemo'
4328
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/no-unnecessary-use-memo/documentation.md
4328
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/no-unnecessary-use-memo/documentation.md
4329
4329
  */
4330
4330
  'flawless/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
4331
4331
  /**
4332
4332
  * Enforce a blank line after `expect.assertions` and `expect.hasAssertions`
4333
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/padding-after-expect-assertions/documentation.md
4333
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/padding-after-expect-assertions/documentation.md
4334
4334
  */
4335
4335
  'flawless/padding-after-expect-assertions'?: Linter.RuleEntry<[]>;
4336
4336
  /**
4337
4337
  * Enforce destructuring assignment for component props
4338
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-destructuring-assignment/documentation.md
4338
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-destructuring-assignment/documentation.md
4339
4339
  */
4340
4340
  'flawless/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
4341
4341
  /**
4342
4342
  * Prefer having the last statement in a test be an assertion
4343
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-ending-with-an-expect/documentation.md
4343
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-ending-with-an-expect/documentation.md
4344
4344
  */
4345
4345
  'flawless/prefer-ending-with-an-expect'?: Linter.RuleEntry<FlawlessPreferEndingWithAnExpect>;
4346
4346
  /**
4347
4347
  * Prefer `expect.assertions(<count>)` over `expect.hasAssertions()`
4348
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-expect-assertions-count/documentation.md
4348
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-expect-assertions-count/documentation.md
4349
4349
  */
4350
4350
  'flawless/prefer-expect-assertions-count'?: Linter.RuleEntry<[]>;
4351
4351
  /**
4352
4352
  * Enforce destructuring parameters in the function signature
4353
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-parameter-destructuring/documentation.md
4353
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-parameter-destructuring/documentation.md
4354
4354
  */
4355
4355
  'flawless/prefer-parameter-destructuring'?: Linter.RuleEntry<FlawlessPreferParameterDestructuring>;
4356
4356
  /**
4357
4357
  * Enforce that function component props are read-only
4358
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/prefer-read-only-props/documentation.md
4358
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/prefer-read-only-props/documentation.md
4359
4359
  */
4360
4360
  'flawless/prefer-read-only-props'?: Linter.RuleEntry<FlawlessPreferReadOnlyProps>;
4361
4361
  /**
4362
4362
  * Disallow impure calls such as `math.random` or `os.clock` during render
4363
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/purity/documentation.md
4363
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/purity/documentation.md
4364
4364
  */
4365
4365
  'flawless/purity'?: Linter.RuleEntry<FlawlessPurity>;
4366
4366
  /**
4367
4367
  * Prefer named imports for React runtime values and the React namespace for React types
4368
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/react-namespace/documentation.md
4368
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/react-namespace/documentation.md
4369
4369
  */
4370
4370
  'flawless/react-namespace'?: Linter.RuleEntry<[]>;
4371
4371
  /**
4372
4372
  * Enforce a configured sort order for TOML keys and tables
4373
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/toml-sort-keys/documentation.md
4373
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/toml-sort-keys/documentation.md
4374
4374
  */
4375
4375
  'flawless/toml-sort-keys'?: Linter.RuleEntry<FlawlessTomlSortKeys>;
4376
4376
  /**
4377
4377
  * Enforce blank lines around top-level YAML block collection keys
4378
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.2/src/rules/yaml-block-key-blank-lines/documentation.md
4378
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v1.4.3/src/rules/yaml-block-key-blank-lines/documentation.md
4379
4379
  */
4380
4380
  'flawless/yaml-block-key-blank-lines'?: Linter.RuleEntry<[]>;
4381
4381
  /**
package/dist/oxlint.mjs CHANGED
@@ -4855,7 +4855,7 @@ function sonarjsRules({ isInEditor, roblox = true }) {
4855
4855
  "sonar/no-all-duplicated-branches": "error",
4856
4856
  "sonar/no-collapsible-if": "error",
4857
4857
  "sonar/no-commented-code": "off",
4858
- "sonar/no-dead-store": "error",
4858
+ "sonar/no-dead-store": "off",
4859
4859
  "sonar/no-duplicate-string": ["error", { ignoreStrings: "Not implemented" }],
4860
4860
  "sonar/no-duplicated-branches": "error",
4861
4861
  "sonar/no-element-overwrite": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isentinel/eslint-config",
3
- "version": "6.0.0-beta.28",
3
+ "version": "6.0.0-beta.29",
4
4
  "description": "iSentinel's ESLint config",
5
5
  "keywords": [
6
6
  "eslint-config",
@@ -76,7 +76,7 @@
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.4.2",
79
+ "eslint-plugin-flawless": "1.4.3",
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.0",
@@ -142,7 +142,7 @@
142
142
  "typescript": "6.0.3",
143
143
  "unplugin-unused": "0.5.7",
144
144
  "vitest": "4.1.10",
145
- "@isentinel/eslint-config": "6.0.0-beta.28"
145
+ "@isentinel/eslint-config": "6.0.0-beta.29"
146
146
  },
147
147
  "peerDependencies": {
148
148
  "@vitest/eslint-plugin": "^1.6.4",