Skip to content

Commit

Permalink
release: 1.1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcoguiec committed Sep 6, 2024
1 parent 8a4a44c commit e6f7c87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gcoguiec/eslint-config",
"version": "1.1.3",
"version": "1.1.4",
"type": "module",
"description": "A reusable ESLint configuration",
"license": "BSD-2-Clause",
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ export interface ConfigFactoryOptions {
* An array of glob patterns indicating the files that the configuration
* object should apply to.
*/
files?: Linter.FlatConfig['files'];
files?: Linter.Config['files'];

/**
* An object containing the configured rules to override.
*/
overrides?: Linter.FlatConfig['rules'];
overrides?: Linter.Config['rules'];

/**
* Registers rules to avoid any conflicts between prettier and ESLint
Expand All @@ -21,7 +21,7 @@ export interface ConfigFactoryOptions {
prettier?: boolean;
}

export const defaultLanguageOptions: Linter.FlatConfig['languageOptions'] = {
export const defaultLanguageOptions: Linter.Config['languageOptions'] = {
ecmaVersion: 'latest',
sourceType: 'module',
globals: {
Expand Down

0 comments on commit e6f7c87

Please sign in to comment.