6

In Visual Studio 2019 Community ver. 16.5.4 there are warnings displayed for typescript files with import and export declarations.

'Error List' tab, warning

annotation in editor window for a typescript file:

Warnings are not shown if files are not opened. But when I open a typescript file, then warning apears.

It is a starter template of angular 9. I added to it a few packages (bootstrap, jwt-decode, fontawesome, jquery, popper.js)

2 Answers 2

9

Visual Studio's ESLinter is attempting to load a global config file that is referenced in C:\Users\Adam - go there and look for a file named .eslintrc. You may remove it.

After you remove it I believe VS will use it's default ESLint config and you may see warnings that apply to Typescript but don't really make sense in the context of Angular.

If you want to disable ESLint entirely for that project in VS:

  1. Navigate to Tools > Options
  2. Select Text Editor on left pane
  3. Expand JavaScript/TypeScript
  4. Select Linting > General
  5. Uncheck Enable ESLint
Sign up to request clarification or add additional context in comments.

Comments

0
  1. Navigate to Tools > Options
  2. Select Text Editor on left pane
  3. Expand JavaScript/TypeScript
  4. Select Linting > General
  5. Click Reset Global .eslintrc button
  6. click OK

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.