Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eslint-types/eslint-define-config
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.10.0
Choose a base ref
...
head repository: eslint-types/eslint-define-config
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.11.0
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on Oct 30, 2022

  1. feat: improve type suggestions with specific defineFlatConfig (#150)

    Co-authored-by: Shinigami92 <chrissi92@hotmail.de>
    sxzz and Shinigami92 authored Oct 30, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c83e66c View commit details
  2. Update Changelog

    Shinigami92 committed Oct 30, 2022
    Copy the full SHA
    2672da2 View commit details
  3. v1.11.0

    Shinigami92 committed Oct 30, 2022
    Copy the full SHA
    9ef1d6b View commit details
Showing with 80 additions and 27 deletions.
  1. +10 −1 CHANGELOG.md
  2. +2 −1 package.json
  3. +6 −0 pnpm-lock.yaml
  4. +1 −5 src/flat-config/index.d.ts
  5. +5 −3 src/index.d.ts
  6. +3 −11 src/index.js
  7. +4 −6 src/index.mjs
  8. +49 −0 tests/define.test.ts
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Next

[diff](https://github.com/Shinigami92/eslint-define-config/compare/1.10.0...main)
[diff](https://github.com/Shinigami92/eslint-define-config/compare/1.11.0...main)

# 1.11.0

[diff](https://github.com/Shinigami92/eslint-define-config/compare/1.10.0...1.11.0)

- Improve type suggestions with specific `defineFlatConfig` ([#150])
(_theoretically a breaking change_)

[#150]: https://github.com/Shinigami92/eslint-define-config/pull/150

# 1.10.0

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-define-config",
"version": "1.10.0",
"version": "1.11.0",
"description": "Provide a defineConfig function for .eslintrc.js files",
"main": "src/index.js",
"module": "src/index.mjs",
@@ -73,6 +73,7 @@
"eslint-plugin-unicorn": "~44.0.2",
"eslint-plugin-vue": "~9.6.0",
"eslint-plugin-vue-pug": "~0.5.4",
"expect-type": "~0.15.0",
"json-schema": "~0.4.0",
"json-schema-to-typescript": "~11.0.2",
"prettier": "2.7.1",
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions src/flat-config/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { ESLint, Linter } from 'eslint';
import type { Rules } from '../rules';
import type { LiteralUnion } from '../utility-types';
import type { LanguageOptions } from './language-options';
import type { LinterOptions } from './linter-options';

@@ -63,12 +62,9 @@ export interface FlatESLintConfigItem {
*
* @see [Using predefined configurations](https://eslint.org/docs/latest/user-guide/configuring/configuration-files-new#using-predefined-configurations)
*/
export type PredefinedConfig = LiteralUnion<
'eslint:recommended' | 'eslint:all'
>;
export type PredefinedConfig = 'eslint:recommended' | 'eslint:all';

export type FlatESLintConfig = FlatESLintConfigItem | PredefinedConfig;
export type FlatESLintConfigs = Array<FlatESLintConfig>;

export * from './language-options';
export * from './linter-options';
8 changes: 5 additions & 3 deletions src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ESLintConfig } from './config';
import type { FlatESLintConfig, FlatESLintConfigs } from './flat-config';
import type { FlatESLintConfig } from './flat-config';

/**
* Define an ESLint config.
@@ -17,7 +17,7 @@ export function defineConfig(config: ESLintConfig): ESLintConfig;
* @param config an item of Flat ESLint config.
* @returns an item of Flat ESLint config.
*/
export function defineConfig(config: FlatESLintConfig): FlatESLintConfig;
export function defineFlatConfig(config: FlatESLintConfig): FlatESLintConfig;

/**
* Define a flat ESLint config.
@@ -27,7 +27,9 @@ export function defineConfig(config: FlatESLintConfig): FlatESLintConfig;
* @param config Flat ESLint config.
* @returns Flat ESLint config.
*/
export function defineConfig(config: FlatESLintConfigs): FlatESLintConfigs;
export function defineFlatConfig(
config: readonly FlatESLintConfig[],
): FlatESLintConfig[];

export * from './config';
export * from './flat-config';
14 changes: 3 additions & 11 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -2,15 +2,7 @@

exports.__esModule = true;
exports.defineConfig = void 0;
exports.defineFlatConfig = void 0;

/**
* Define an ESLint config.
*
* @param config ESLint config.
* @returns ESLint config.
*/
function defineConfig(config) {
return config;
}

exports.defineConfig = defineConfig;
exports.defineConfig = (config) => config;
exports.defineFlatConfig = (config) => config;
10 changes: 4 additions & 6 deletions src/index.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/**
* Define an eslint config.
*
* @param config Eslint config.
* @returns Eslint config.
*/
export function defineConfig(config) {
return config;
}

export function defineFlatConfig(config) {
return config;
}
49 changes: 49 additions & 0 deletions tests/define.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import { expectTypeOf } from 'expect-type';
import { describe, test } from 'vitest';
import type { ESLintConfig, FlatESLintConfig } from '../src';
import { defineConfig, defineFlatConfig } from '../src';

describe('define', () => {
test('define empty config', () => {
expectTypeOf(defineConfig({})).toEqualTypeOf<ESLintConfig>();
});

test('define ESLint config', () => {
expectTypeOf(
defineConfig({
env: {},
extends: [],
rules: {},
}),
).toEqualTypeOf<ESLintConfig>();
});

test('define an item of flat ESLint config', () => {
expectTypeOf(
defineFlatConfig({
ignores: [],
plugins: {},
rules: {},
}),
).toEqualTypeOf<FlatESLintConfig>();
});

test('define predefined flat ESLint config', () => {
expectTypeOf(
defineFlatConfig('eslint:recommended'),
).toEqualTypeOf<FlatESLintConfig>();
});

test('define flat ESLint config', () => {
expectTypeOf(
defineFlatConfig([
'eslint:recommended',
{
ignores: [],
plugins: {},
rules: {},
},
]),
).toEqualTypeOf<FlatESLintConfig[]>();
});
});