|
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:
837 bytes
|
| Line | |
|---|
| 1 | import { ESLint, Linter, Rule } from 'eslint';
|
|---|
| 2 |
|
|---|
| 3 | declare const plugin: ESLint.Plugin & {
|
|---|
| 4 | meta: {
|
|---|
| 5 | name: string;
|
|---|
| 6 | version: string;
|
|---|
| 7 | };
|
|---|
| 8 | configs: {
|
|---|
| 9 | 'recommended': Linter.LegacyConfig;
|
|---|
| 10 | 'errors': Linter.LegacyConfig;
|
|---|
| 11 | 'warnings': Linter.LegacyConfig;
|
|---|
| 12 | 'stage-0': Linter.LegacyConfig;
|
|---|
| 13 | 'react': Linter.LegacyConfig;
|
|---|
| 14 | 'react-native': Linter.LegacyConfig;
|
|---|
| 15 | 'electron': Linter.LegacyConfig;
|
|---|
| 16 | 'typescript': Linter.LegacyConfig;
|
|---|
| 17 | };
|
|---|
| 18 | flatConfigs: {
|
|---|
| 19 | 'recommended': Linter.FlatConfig;
|
|---|
| 20 | 'errors': Linter.FlatConfig;
|
|---|
| 21 | 'warnings': Linter.FlatConfig;
|
|---|
| 22 | 'stage-0': Linter.FlatConfig;
|
|---|
| 23 | 'react': Linter.FlatConfig;
|
|---|
| 24 | 'react-native': Linter.FlatConfig;
|
|---|
| 25 | 'electron': Linter.FlatConfig;
|
|---|
| 26 | 'typescript': Linter.FlatConfig;
|
|---|
| 27 | };
|
|---|
| 28 | rules: {
|
|---|
| 29 | [key: string]: Rule.RuleModule;
|
|---|
| 30 | };
|
|---|
| 31 | };
|
|---|
| 32 |
|
|---|
| 33 | export = plugin;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.