@open-xchange/linter-presets 0.8.12 → 0.8.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## `0.8.13` – 2024-Nov-08
4
+
5
+ - chore: bump dependencies
6
+
3
7
  ## `0.8.12` – 2024-Nov-02
4
8
 
5
9
  - fix: (ESLint) `@typescript-eslint/switch-exhaustiveness-check`: add option `considerDefaultExhaustiveForUnions`
@@ -26,7 +26,7 @@ Generates standard configuration targeting the source files in the entire projec
26
26
  #### `configure` Signature
27
27
 
28
28
  ```ts
29
- function configure(options?: ConfigureOptions): Linter.FlatConfig[]
29
+ function configure(options?: ConfigureOptions): Linter.Config[]
30
30
  ```
31
31
 
32
32
  #### `configure` Options
@@ -5,7 +5,7 @@ Creates configuration objects with global symbols and linter rules for modules r
5
5
  ## Signature
6
6
 
7
7
  ```ts
8
- function browser(options: EnvBrowserOptions): Linter.FlatConfig[]
8
+ function browser(options: EnvBrowserOptions): Linter.Config[]
9
9
  ```
10
10
 
11
11
  ## Options
@@ -8,7 +8,7 @@ Creates configuration objects with global symbols and linter rules for E2E tests
8
8
  ## Signature
9
9
 
10
10
  ```ts
11
- function codecept(options: EnvCodeceptOptions): Linter.FlatConfig[]
11
+ function codecept(options: EnvCodeceptOptions): Linter.Config[]
12
12
  ```
13
13
 
14
14
  ## Options
@@ -5,7 +5,7 @@ Creates configuration objects with linter rules for implementing custom ESlint p
5
5
  ## Signature
6
6
 
7
7
  ```ts
8
- function plugin(options: EnvEslintOptions): Linter.FlatConfig[]
8
+ function plugin(options: EnvEslintOptions): Linter.Config[]
9
9
  ```
10
10
 
11
11
  ## Options
@@ -9,7 +9,7 @@ Creates configuration objects with global symbols and linter rules for unit test
9
9
  ## Signature
10
10
 
11
11
  ```ts
12
- function jest(options: EnvJestOptions): Linter.FlatConfig[]
12
+ function jest(options: EnvJestOptions): Linter.Config[]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -5,7 +5,7 @@ Creates configuration objects with global symbols and linter rules for NodeJS mo
5
5
  ## Signature
6
6
 
7
7
  ```ts
8
- function node(options: EnvNodeOptions): Linter.FlatConfig[]
8
+ function node(options: EnvNodeOptions): Linter.Config[]
9
9
  ```
10
10
 
11
11
  ## Options
@@ -11,7 +11,7 @@ Creates configuration objects for custom project setup and module imports.
11
11
  ## Signature
12
12
 
13
13
  ```ts
14
- function project(options: EnvProjectOptions): Linter.FlatConfig[]
14
+ function project(options: EnvProjectOptions): Linter.Config[]
15
15
  ```
16
16
 
17
17
  ## Options
@@ -12,7 +12,7 @@ Creates configuration objects with linter rules for ReactJS. Adds the following
12
12
  ## Signature
13
13
 
14
14
  ```ts
15
- function react(options: EnvReactOptions): Linter.FlatConfig[]
15
+ function react(options: EnvReactOptions): Linter.Config[]
16
16
  ```
17
17
 
18
18
  ## Options
@@ -7,7 +7,7 @@ Usually, this environment preset should not be necessary, as the new [project se
7
7
  ## Signature
8
8
 
9
9
  ```ts
10
- function tsconfig(options: EnvTSConfigOptions): Linter.FlatConfig[]
10
+ function tsconfig(options: EnvTSConfigOptions): Linter.Config[]
11
11
  ```
12
12
 
13
13
  ## Options
@@ -9,7 +9,7 @@ Creates configuration objects with global symbols and linter rules for unit test
9
9
  ## Signature
10
10
 
11
11
  ```ts
12
- function vitest(options: EnvVitestOptions): Linter.FlatConfig[]
12
+ function vitest(options: EnvVitestOptions): Linter.Config[]
13
13
  ```
14
14
 
15
15
  ## Options
@@ -17,7 +17,7 @@ Generates standard configuration targeting the source files in the entire projec
17
17
 
18
18
  #### `configure` Signature
19
19
 
20
- `function configure(options?: ConfigureOptions): Linter.FlatConfig[]`
20
+ `function configure(options?: ConfigureOptions): Linter.Config[]`
21
21
 
22
22
  #### `configure` Options
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/linter-presets",
3
- "version": "0.8.12",
3
+ "version": "0.8.13",
4
4
  "description": "Configuration presets for ESLint and StyleLint",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,7 +39,7 @@
39
39
  "eslint-plugin-codeceptjs": "^1.3.0",
40
40
  "eslint-plugin-eslint-plugin": "^6.3.1",
41
41
  "eslint-plugin-import": "^2.31.0",
42
- "eslint-plugin-jest": "^28.8.3",
42
+ "eslint-plugin-jest": "^28.9.0",
43
43
  "eslint-plugin-jest-dom": "^5.4.0",
44
44
  "eslint-plugin-jsdoc": "^50.4.3",
45
45
  "eslint-plugin-jsonc": "^2.16.0",