mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
|
export type setupOptions = {
|
||
|
/**
|
||
|
* - import path of eslint
|
||
|
*/
|
||
|
eslintPath?: string | undefined;
|
||
|
/**
|
||
|
* - linter options
|
||
|
*/
|
||
|
eslintOptions?: ESLintOptions | undefined;
|
||
|
};
|
||
|
export type ESLint = import('eslint').ESLint;
|
||
|
export type ESLintOptions = import('eslint').ESLint.Options;
|