Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 984 Bytes

mergeConfig.md

File metadata and controls

41 lines (24 loc) · 984 Bytes

APIs Documentation


Function: mergeConfig()

mergeConfig<T>(...configs): T

Merge multiple configs together. The latter takes precedence if values have conflicts.

This function is preferred to {...config1, ...config2} because some keys need to be merged instead of overwritten, e.g. exclude. Please refer to DEFAULT_MERGER for more details.

Example:

const config1 = { maxLineLength: 80, tabSize: 2 };
const config2 = { maxLineLength: 100 };

const config = mergeConfig(config1, config2);  // { maxLineLength: 100, tabSize: 2 }

Type Parameters

T extends Configuration = Configuration

Parameters

configs

...T[]

An array of config objects

Returns

T

Defined in

config/merge.ts:50