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