@envsa/cspell-config
Version:
CSpell configuration for @envsa/shared-config.
18 lines (17 loc) • 579 B
TypeScript
import type { CSpellUserSettings as CspellConfig } from '@cspell/cspell-types';
declare const sharedCspellConfig: CspellConfig;
/**
* **\@Envsa's Shared Cspell Configuration**
* @see [@envsa/cspell-config](https://github.com/envsa/shared-config/packages/cspell-config)
* @see [@envsa/shared-config](https://github.com/envsa/shared-config)
* @example
* ```js
* export default cspellConfig({
* ignorePaths: [
* '/test/fixtures/input',
* ],
* })
* ```
*/
export declare function cspellConfig(config?: CspellConfig): CspellConfig;
export default sharedCspellConfig;