11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
|
import type { TSESLint } from '@typescript-eslint/experimental-utils';
|
||
|
declare const sonarjsRuleModules: {
|
||
|
[key: string]: any;
|
||
|
};
|
||
|
declare const configs: {
|
||
|
recommended: TSESLint.Linter.Config & {
|
||
|
plugins: string[];
|
||
|
};
|
||
|
};
|
||
|
export { sonarjsRuleModules as rules, configs };
|