@isentinel/eslint-config 3.3.0 → 3.4.0

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.js CHANGED
@@ -11,7 +11,7 @@ import { execSync } from "node:child_process";
11
11
 
12
12
  //#region package.json
13
13
  var name = "@isentinel/eslint-config";
14
- var version = "3.3.0";
14
+ var version = "3.4.0";
15
15
  var description = "iSentinel's ESLint config";
16
16
  var keywords = [
17
17
  "eslint-config",
package/dist/index.d.ts CHANGED
@@ -16144,7 +16144,7 @@ declare const defaultPluginRenaming: {
16144
16144
  declare function isentinel(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: Array<Awaitable<Array<Linter.Config> | Array<TypedFlatConfigItem> | FlatConfigComposer<any, any> | TypedFlatConfigItem>>): Promise<FlatConfigComposer<TypedFlatConfigItem, ConfigNames>>;
16145
16145
  //#endregion
16146
16146
  //#region src/globs.d.ts
16147
- declare const GLOB_ROOT = "*.?([cm])[jt]s?(x)";
16147
+ declare const GLOB_ROOT: string[];
16148
16148
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
16149
16149
  declare const GLOB_SRC = "**/*.?([cm])[jt]s?(x)";
16150
16150
  declare const GLOB_LUA = "**/*.lua?(u)";
package/dist/index.js CHANGED
@@ -11,7 +11,15 @@ import { pathToFileURL } from "node:url";
11
11
  import { fixupPluginRules } from "@eslint/compat";
12
12
 
13
13
  //#region src/globs.ts
14
- const GLOB_ROOT = "*.?([cm])[jt]s?(x)";
14
+ const GLOB_ROOT = [
15
+ "*.?([cm])[jt]s?(x)",
16
+ "packages/*/*.?([cm])[jt]s?(x)",
17
+ "apps/*/*.?([cm])[jt]s?(x)",
18
+ "libs/*/*.?([cm])[jt]s?(x)",
19
+ "packages/*/*/*.?([cm])[jt]s?(x)",
20
+ "apps/*/*/*.?([cm])[jt]s?(x)",
21
+ "libs/*/*/*.?([cm])[jt]s?(x)"
22
+ ];
15
23
  const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
16
24
  const GLOB_SRC = "**/*.?([cm])[jt]s?(x)";
17
25
  const GLOB_LUA = "**/*.lua?(u)";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isentinel/eslint-config",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "iSentinel's ESLint config",
5
5
  "keywords": [
6
6
  "eslint-config",
@@ -119,7 +119,7 @@
119
119
  "tsdown": "0.14.2",
120
120
  "type-fest": "4.41.0",
121
121
  "typescript": "5.9.2",
122
- "@isentinel/eslint-config": "3.3.0"
122
+ "@isentinel/eslint-config": "3.4.0"
123
123
  },
124
124
  "peerDependencies": {
125
125
  "@eslint-react/eslint-plugin": "^1.45.0",