export default { extends: ['plugin:@typescript-eslint/recommended', 'prettier', 'plugin:escompat/typescript-2020'], parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'escompat', 'github'], rules: { camelcase: 'off', 'no-unused-vars': 'off', 'no-shadow': 'off', 'no-invalid-this': 'off', '@typescript-eslint/no-invalid-this': ['error'], '@typescript-eslint/no-shadow': ['error'], '@typescript-eslint/interface-name-prefix': 'off', '@typescript-eslint/array-type': ['error', {default: 'array-simple'}], '@typescript-eslint/no-use-before-define': 'off', '@typescript-eslint/explicit-member-accessibility': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/no-unused-vars': 'error', '@typescript-eslint/explicit-module-boundary-types': 'off', }, }