mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +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;
|