@debbl/eslint-config 2.0.0 → 2.0.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/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ParserOptions } from '@typescript-eslint/parser';
|
|
2
2
|
import { RequiredOptions } from 'prettier';
|
|
3
|
-
import {
|
|
3
|
+
import { FlatESLintConfig } from 'eslint-define-config';
|
|
4
4
|
|
|
5
5
|
type PrettierRequiredOptions = Partial<RequiredOptions>;
|
|
6
6
|
type Awaitable<T> = T | Promise<T>;
|
|
7
|
-
interface ConfigItem extends
|
|
7
|
+
interface ConfigItem extends FlatESLintConfig {
|
|
8
8
|
/**
|
|
9
9
|
* Custom name of each config item
|
|
10
10
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ParserOptions } from '@typescript-eslint/parser';
|
|
2
2
|
import { RequiredOptions } from 'prettier';
|
|
3
|
-
import {
|
|
3
|
+
import { FlatESLintConfig } from 'eslint-define-config';
|
|
4
4
|
|
|
5
5
|
type PrettierRequiredOptions = Partial<RequiredOptions>;
|
|
6
6
|
type Awaitable<T> = T | Promise<T>;
|
|
7
|
-
interface ConfigItem extends
|
|
7
|
+
interface ConfigItem extends FlatESLintConfig {
|
|
8
8
|
/**
|
|
9
9
|
* Custom name of each config item
|
|
10
10
|
*/
|
package/package.json
CHANGED