@eslinted/defaults 17.5.2 → 17.5.3

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.ts CHANGED
@@ -825,7 +825,7 @@ declare const _default: {
825
825
  })[];
826
826
  mocha: {
827
827
  rules: {
828
- readonly "ts/no-unused-expressions": import("./rules/state.js").State.OFF;
828
+ readonly "no-unused-expressions": import("./rules/state.js").State.OFF;
829
829
  };
830
830
  }[];
831
831
  svelte: ({
@@ -807,7 +807,7 @@ declare const _default: {
807
807
  })[];
808
808
  mocha: {
809
809
  rules: {
810
- readonly "ts/no-unused-expressions": import("./state.js").State.OFF;
810
+ readonly "no-unused-expressions": import("./state.js").State.OFF;
811
811
  };
812
812
  }[];
813
813
  svelte: ({
@@ -1,7 +1,7 @@
1
1
  import { State } from "../state.js";
2
2
  declare const _default: {
3
3
  rules: {
4
- readonly "ts/no-unused-expressions": State.OFF;
4
+ readonly "no-unused-expressions": State.OFF;
5
5
  };
6
6
  }[];
7
7
  export default _default;
@@ -1,7 +1,7 @@
1
1
  export default [
2
2
  {
3
3
  rules: {
4
- "ts/no-unused-expressions": 0,
4
+ "no-unused-expressions": 0,
5
5
  },
6
6
  },
7
7
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rules/mocha/index.ts"],"names":[],"mappings":"AAEA,eAAe;IACb;QACE,KAAK,EAAE;YACL,0BAA0B,GAAW;SAC7B;KACX;CACF,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rules/mocha/index.ts"],"names":[],"mappings":"AAEA,eAAe;IACb;QACE,KAAK,EAAE;YACL,uBAAuB,GAAW;SAC1B;KACX;CACF,CAAC"}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "@eslinted/defaults",
6
- "version": "17.5.2",
6
+ "version": "17.5.3",
7
7
  "repository": "github:jimmy-zhening-luo/linted-defaults",
8
8
  "description": "Default scopes for `linted`",
9
9
  "keywords": [],
@@ -3,7 +3,7 @@ import { State } from "../state";
3
3
  export default [
4
4
  {
5
5
  rules: {
6
- "ts/no-unused-expressions": State.OFF /* fails to detect valueful assertions in mocha */,
6
+ "no-unused-expressions": State.OFF /* fails to detect valueful assertions in mocha */,
7
7
  } as const,
8
8
  },
9
9
  ];