4

在我的 GitHubREADME.md文件中,它位于我的 Android 项目的根目录中,我有如下代码片段:

```xml
android:windowSoftInputMode="stateHidden"
```

```java
MongolToast.makeText(getApplicationContext(), "ᠰᠠᠢᠨ ᠪᠠᠢᠨ᠎ᠠ ᠤᠤ︖", MongolToast.LENGTH_LONG).show();
```

但是,在 Android Studio 中,这些代码片段会出现错误

在此处输入图像描述

我不想被警告 README 文件中假定的代码错误。如何在此处禁用所有错误?

笔记:

4

2 回答 2

3

在做了一些进一步的研究之后,我得出的结论是,这些错误不是来自 Android Studio 本身,而是有markdown类似格式的插件Markdown NavigatorMarkdown Support如果安装并启用了它们中的任何一个,那么您将在README.md文件中看到上述错误。

我认为这种拼写检查是这些插件的内置功能,无法从 Android Studio 控制。

我认为一种选择是禁用这些插件,你很高兴。

您可以从(Android Studio 3.1.4 MacOS)Preferences > Plugins(或File > Settings > Plugins在 Linux 中)禁用这些插件,方法是取消选中它们并重新启动(不要忘记)您的 Android Studio:

在此处输入图像描述

于 2018-09-06T01:58:11.750 回答
2

First you need to create a scope (Settings->Scope) and add the files you want to keep out of scope for the Lints you wanna suppress.

Then go to Settings->Inspections, chose the inspection you wanna remove, and then on the right choose from the drop down your scope to define the wanted behavior.

scope_behavior

In this case, my scope is called AVOID_LINTS, and won't show any typo warnings.

EDIT

In the first step, when you create the scope, you need to add your README to the new scope.

EDIT2

Where to find the scopes: enter image description here

You may search for the files you want to add, select and click include.

于 2018-09-06T01:43:46.073 回答