Configure ESLint and update configuration for Prettier (#949)

* Update ESLint and Prettier configurations

* Rebuild action

* Update package.json
This commit is contained in:
Ivan
2023-03-09 14:57:55 +02:00
committed by GitHub
parent 3d90444e57
commit 47a58a6ddf
15 changed files with 3761 additions and 5493 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,4 @@
/* eslint jest/no-identical-title: "off" */
import {DefaultProcessorOptions} from '../../__tests__/constants/default-processor-options';
import {generateIIssue} from '../../__tests__/functions/generate-iissue';
import {IIssue} from '../interfaces/issue';

View File

@@ -14,7 +14,7 @@ export class Issue implements IIssue {
created_at: IsoDateString;
updated_at: IsoDateString;
readonly labels: ILabel[];
readonly pull_request: Object | null | undefined;
readonly pull_request: object | null | undefined;
readonly state: string | 'closed' | 'open';
readonly locked: boolean;
readonly milestone?: IMilestone | null;