eslint-config-typescript
eslint-config-typescript copied to clipboard
Support for `recommended-requiring-type-checking` and `all`
Are there plans to support the recommended-requiring-type-checking and the all sets from typescript-eslint?
Would a PR for that be welcome?
Will need https://github.com/vuejs/vue-eslint-parser/issues/104
https://typescript-eslint.io/linting/typed-linting/ https://github.com/vuejs/vue-eslint-parser/issues/104#issuecomment-875149361 https://stackoverflow.com/questions/66597732/eslint-vue-3-parsing-error-expected-eslint
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
project: ['./tsconfig.json', './tsconfig.node.json'],
tsconfigRootDir: __dirname,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'@vue/typescript/recommended',
'plugin:@typescript-eslint/strict-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
],