eslint-plugin-gb 9.2.0-beta.2 → 9.2.1

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/configs/base.js CHANGED
@@ -1,7 +1,3 @@
1
- // @ts-check
2
- import { ESLint } from "eslint";
3
-
4
- /** @type {ESLint.ConfigData} */
5
1
  export const base = {
6
2
  rules: {
7
3
  "@typescript-eslint/explicit-member-accessibility": "warn",
package/index.d.ts CHANGED
@@ -1,15 +1,14 @@
1
1
  import type { Linter } from "eslint";
2
2
 
3
- declare const gb: {
3
+ export declare const gb: {
4
4
  readonly meta: {
5
5
  readonly name: string;
6
6
  readonly version: string;
7
- readonly namespace: string;
7
+ readonly namespace: "gb";
8
8
  };
9
9
  readonly configs: {
10
10
  readonly recommended: { readonly rules: Readonly<Linter.RulesRecord> };
11
- readonly all: { readonly rules: Readonly<Linter.RulesRecord> };
11
+ readonly base: { readonly rules: Readonly<Linter.RulesRecord> };
12
12
  };
13
13
  };
14
14
 
15
- export = gb;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-gb",
3
- "version": "9.2.0-beta.2",
3
+ "version": "9.2.1",
4
4
  "description": "ESLint rules I like",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -26,7 +26,8 @@
26
26
  "access": "public"
27
27
  },
28
28
  "devDependencies": {
29
- "@eslint/js": "^9.39.2"
29
+ "@eslint/js": "^9.39.2",
30
+ "globals": "^17.0.0"
30
31
  },
31
32
  "packageManager": "pnpm@10.25.0"
32
33
  }