source: frontend/node_modules/eslint-module-utils/ignore.d.ts@ cdcff72

Last change on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 428 bytes
Line 
1import { Rule } from 'eslint';
2import type { ESLintSettings, Extension } from './types';
3
4declare function ignore(path: string, context: Rule.RuleContext): boolean;
5
6declare function getFileExtensions(settings: ESLintSettings): Set<Extension>;
7
8declare function hasValidExtension(path: string, context: Rule.RuleContext): path is `${string}${Extension}`;
9
10export default ignore;
11
12export { getFileExtensions, hasValidExtension }
Note: See TracBrowser for help on using the repository browser.