eslint-config-typescript icon indicating copy to clipboard operation
eslint-config-typescript copied to clipboard

Support for `recommended-requiring-type-checking` and `all`

Open rafaellehmkuhl opened this issue 4 years ago • 3 comments

Are there plans to support the recommended-requiring-type-checking and the all sets from typescript-eslint? Would a PR for that be welcome?

rafaellehmkuhl avatar Aug 10 '21 18:08 rafaellehmkuhl

Will need https://github.com/vuejs/vue-eslint-parser/issues/104

segevfiner avatar Aug 11 '22 13:08 segevfiner

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',
],

n0099 avatar Dec 17 '23 15:12 n0099