@treet/eslint-config-typescript
Version:
ESLint configuration used by Treet in TypeScript projects
14 lines (13 loc) • 358 B
JavaScript
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'import/no-anonymous-default-export': 'off',
},
};