/** * In addition to the main config (index.js), which contains the recommended * rules that should be enabled all the time, these are some additional rules * that can be run from time to time. These are not always on either because * they have too many false positives or are too slow. */ declare const _default: { files: string[]; rules: { "@typescript-eslint/no-unsafe-return": "warn"; "@typescript-eslint/unbound-method": "warn"; "class-methods-use-this": "off"; "@typescript-eslint/class-methods-use-this": ["warn", { ignoreOverrideMethods: boolean; ignoreClassesThatImplementAnInterface: string; }]; /** * False positive when constructor exists to improve typing/narrow down the * type */ "@typescript-eslint/no-useless-constructor": "warn"; }; }[]; export default _default;