|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
428 bytes
|
| Line | |
|---|
| 1 | import { Rule } from 'eslint';
|
|---|
| 2 | import type { ESLintSettings, Extension } from './types';
|
|---|
| 3 |
|
|---|
| 4 | declare function ignore(path: string, context: Rule.RuleContext): boolean;
|
|---|
| 5 |
|
|---|
| 6 | declare function getFileExtensions(settings: ESLintSettings): Set<Extension>;
|
|---|
| 7 |
|
|---|
| 8 | declare function hasValidExtension(path: string, context: Rule.RuleContext): path is `${string}${Extension}`;
|
|---|
| 9 |
|
|---|
| 10 | export default ignore;
|
|---|
| 11 |
|
|---|
| 12 | export { getFileExtensions, hasValidExtension }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.