web-dev-qa-db-ja.com

'定義の定義' @ typesscript-eslint / no-use-play-replare 'が見つかりませんでした。

私はESLINTの新しいものであり、この問題を解決する方法を理解することはできません。私の輸入の始まりは常に赤い線で下線を引いています。指定されたルールに対して定義が見つからないという定義を訴えます。そうでなければ役立つように見えるようにルールを整えたいと思います。 enter image description here

私の.eslintrc.jsファイルの場合、次の規則が設定されています。

`

module.exports = {
    env: {
        browser: true,
        node: true
    },
    extends: [
        'eslint:recommended',
        'plugin:@TypeScript-eslint/eslint-recommended',
        'plugin:@TypeScript-eslint/recommended',
        'plugin:@TypeScript-eslint/recommended-requiring-type-checking',
        'prettier'
    ],
    parser: '@TypeScript-eslint/parser',
    parserOptions: {
        project: 'tsconfig.json',
        sourceType: 'module'
    },
    plugins: ['@TypeScript-eslint', '@TypeScript-eslint/tslint'],
    rules: {
        '@TypeScript-eslint/class-name-casing': 'error',
        '@TypeScript-eslint/consistent-type-definitions': 'error',
        '@TypeScript-eslint/explicit-member-accessibility': [
            'off',
            {
                accessibility: 'explicit'
            }
        ],
        '@TypeScript-eslint/indent': ['error', 'tab'],
        '@TypeScript-eslint/member-delimiter-style': [
            'error',
            {
                multiline: {
                    delimiter: 'semi',
                    requireLast: true
                },
                singleline: {
                    delimiter: 'semi',
                    requireLast: false
                }
            }
        ],
        '@TypeScript-eslint/member-ordering': 'error',
        '@TypeScript-eslint/no-empty-function': 'off',
        '@TypeScript-eslint/no-empty-interface': 'error',
        '@TypeScript-eslint/no-inferrable-types': 'error',
        '@TypeScript-eslint/no-misused-new': 'error',
        '@TypeScript-eslint/no-non-null-assertion': 'error',
        '@TypeScript-eslint/no-use-before-declare': ['error', { functions: true, classes: true, variables: true }],
        '@TypeScript-eslint/prefer-function-type': 'error',
        '@TypeScript-eslint/quotes': ['error', 'single'],
        '@TypeScript-eslint/semi': ['error', 'always'],
        '@TypeScript-eslint/type-annotation-spacing': 'error',
        '@TypeScript-eslint/unified-signatures': 'error',
        'arrow-body-style': 'error',
        camelcase: 'off',
        'capitalized-comments': 'error',
        'constructor-super': 'error',
        curly: 'error',
        'dot-notation': 'off',
        'eol-last': 'error',
        eqeqeq: ['error', 'smart'],
        'guard-for-in': 'error',
        'id-blacklist': 'off',
        'id-match': 'off',
        'import/no-deprecated': 'warn',
        'max-classes-per-file': ['error', 1],
        'max-len': [
            'error',
            {
                code: 140
            }
        ],
        'no-bitwise': 'error',
        'no-caller': 'error',
        'no-console': [
            'error',
            {
                allow: [
                    'log',
                    'warn',
                    'dir',
                    'timeLog',
                    'assert',
                    'clear',
                    'count',
                    'countReset',
                    'group',
                    'groupEnd',
                    'table',
                    'dirxml',
                    'error',
                    'groupCollapsed',
                    'Console',
                    'profile',
                    'profileEnd',
                    'timeStamp',
                    'context'
                ]
            }
        ],
        'no-debugger': 'error',
        'no-empty': 'off',
        'no-eval': 'error',
        'no-fallthrough': 'error',
        'no-new-wrappers': 'error',
        'no-shadow': [
            'error',
            {
                hoist: 'all'
            }
        ],
        'no-throw-literal': 'error',
        'no-trailing-spaces': 'error',
        'no-undef-init': 'error',
        'no-underscore-dangle': 'off',
        'no-unused-expressions': 'error',
        'no-unused-labels': 'error',
        'no-var': 'error',
        'prefer-const': 'error',
        radix: 'error',
        'spaced-comment': 'error',
        '@TypeScript-eslint/tslint/config': [
            'error',
            {
                rules: {
                    'component-class-suffix': [true, 'Component', 'View', 'Routing'],
                    'contextual-lifecycle': true,
                    'directive-class-suffix': true,
                    'import-blacklist': [true, 'rxjs/Rx'],
                    'import-spacing': true,
                    'no-Host-metadata-property': true,
                    'no-input-rename': true,
                    'no-inputs-metadata-property': true,
                    'no-output-on-prefix': true,
                    'no-output-rename': true,
                    'no-outputs-metadata-property': true,
                    'no-redundant-jsdoc': true,
                    'one-line': [true, 'check-open-brace', 'check-catch', 'check-else', 'check-whitespace'],
                    'template-banana-in-box': true,
                    'template-no-negated-async': true,
                    'use-component-view-encapsulation': true,
                    'use-lifecycle-interface': true,
                    'use-pipe-decorator': true,
                    'use-pipe-transform-interface': true,
                    'no-unused-vars': ['error', { vars: 'all', args: 'after-used', ignoreRestSiblings: false }],
                    whitespace: [true, 'check-branch', 'check-decl', 'check-operator', 'check-separator', 'check-type']
                }
            }
        ]
    }
};

`
 _

ルールを削除する以外にこれを修正する方法はありますか?

ありがとうございました

11
O.MeeKoh

vscodeを再起動してみてください。私とこの男は同じ問題に直面しました。

https://stackoverflow.com/a/65495694/1189249