How to disable Eclipse error reporting for .md files

When there is a README.md file from GitHub , my Eclipse always shows errors in "Footnote missing", while the grammar in the md file is correct.

How to disable error reporting in a specific file or files with a specific suffix or ...?

+8
source share
5 answers

In Eclipse Oxygen, I solved this problem by removing only the Mylyn WikiText plugin.

Help → Eclipse Marketplace → Installed

enter image description here enter image description here

+2
source

, , mylyn: . " 404095: [Markdown] "

LinkDefinitionValidationRule.missing=Footnote ''{0}'' is missing.

, WikiText .

" Mylyn", task repository Properties .
Editor settings ( , ).

WikiText , Plain Text.

+1

mylyn, Java Eclipse. Eclipse Neon Mylyn Eclipse Installation Details. Help == > Installation Details, , , Uninstall.... "footnote missing" README !

Eclipse Installation Details View

0

  \ .

:
python logproccli.py [-h] [-l LOGS] [-t TEMPLATE] [-p PARSER]

, ,
"" -l LOGS "."

, , \ :
python logproccli.py [-h] \[-l LOGS] \[-t TEMPLATE] \[-p PARSER]

Strange, but I had to add it in front of the LOGS, TEMPLATE and PARSER.
Anyway, this "solved" the error problem without deleting anything.
And it \\does not appear as a result on the net.

0
source

Eclipse problems view

Eclipse Problems Configure Contents

This should disable error reporting for .md files. You may need to restart Eclipse if you still see the error in a different view / perspective, such as Package Explorer / Navigator.

0
source

Source: https://habr.com/ru/post/1616835/


All Articles