@rws-air/eslint-config
Version:
Standard ESLint config for RWS-NL ReactJS projects written in TypeScript
34 lines • 940 B
TypeScript
export declare const config: {
root: boolean;
parser: string;
parserOptions: {
project: string;
sourceType: string;
ecmaVersion: number;
ecmaFeatures: {
jsx: boolean;
};
};
extends: string[];
env: {
node: boolean;
es6: boolean;
jest: boolean;
browser: boolean;
commonjs: boolean;
};
rules: {
'@typescript-eslint/no-explicit-any': string;
'@typescript-eslint/ban-ts-comment': (string | {
'ts-expect-error': boolean;
'ts-ignore': boolean;
'ts-nocheck': boolean;
'ts-check': boolean;
})[];
'@typescript-eslint/ban-ts-ignore': string;
'@typescript-eslint/explicit-function-return-type': string;
'@typescript-eslint/explicit-module-boundary-types': string;
};
};
export default config;
//# sourceMappingURL=index.d.ts.map