generated from erangel1/generic-template
initial commit. phase 1 complete
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
import { ESLint, Linter, Rule } from 'eslint';
|
||||
|
||||
declare const plugin: ESLint.Plugin & {
|
||||
meta: {
|
||||
name: string;
|
||||
version: string;
|
||||
};
|
||||
configs: {
|
||||
'recommended': Linter.LegacyConfig;
|
||||
'errors': Linter.LegacyConfig;
|
||||
'warnings': Linter.LegacyConfig;
|
||||
'stage-0': Linter.LegacyConfig;
|
||||
'react': Linter.LegacyConfig;
|
||||
'react-native': Linter.LegacyConfig;
|
||||
'electron': Linter.LegacyConfig;
|
||||
'typescript': Linter.LegacyConfig;
|
||||
};
|
||||
flatConfigs: {
|
||||
'recommended': Linter.FlatConfig;
|
||||
'errors': Linter.FlatConfig;
|
||||
'warnings': Linter.FlatConfig;
|
||||
'stage-0': Linter.FlatConfig;
|
||||
'react': Linter.FlatConfig;
|
||||
'react-native': Linter.FlatConfig;
|
||||
'electron': Linter.FlatConfig;
|
||||
'typescript': Linter.FlatConfig;
|
||||
};
|
||||
rules: {
|
||||
[key: string]: Rule.RuleModule;
|
||||
};
|
||||
};
|
||||
|
||||
export = plugin;
|
||||
Reference in New Issue
Block a user