-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(original): update original source ( 233.199 )
- Loading branch information
1 parent
119c14e
commit fc1cfad
Showing
201 changed files
with
12,437 additions
and
13,846 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
original-plugin-raw/zh/com/jetbrains/webstorm/WebstormBundle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
action.WebStormMigrationGuide.text=WebStorm 迁移指南 | ||
newUiOnboarding.toolbar.customization.header=工具栏自定义 | ||
newUiOnboarding.toolbar.customization.text=自定义工具栏,通过右键点击工具栏快速访问特定的运行、Git 和常规操作 | ||
newUiOnboarding.toolbar.customization.text=Right-click the toolbar and add the actions to which you need quick access, such as Run, Git, or General actions. | ||
webstorm.migration.guide.action=探索迁移指南 | ||
webstorm.migration.guide.description=来自其他 JetBrains IDE、VS Code 或者 Sublime Text? 请参阅我们的指南以更快上手。 | ||
webstorm.migration.guide.title=从另一个 IDE 或代码编辑器转移 |
21 changes: 21 additions & 0 deletions
21
original-plugin-raw/zh/inspectionDescriptions/AndroidRoomSqlBooleanLiteral.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!-- | ||
~ Copyright (C) 2023 The Android Open Source Project | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
<html> | ||
<body> | ||
<p>Android API 级别 30 是第一个包含 SQLite 版本的 Android 版本,该版本支持布尔文字 "TRUE" 和 "FALSE"。 请参阅 <a href="https://sqlite.org/datatype3.html">SQLite 数据类型</a>和 <a href="https://developer.android.com/reference/android/database/sqlite/package-summary">Android SQLite 版本</a>的文档。</p> | ||
<p>在较低的 API 级别上,应使用等效的整数文字 1 (TRUE) 和 0 (FALSE)。</p> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
original-plugin-raw/zh/inspectionDescriptions/DuplicateTestNameInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html lang="zh"> | ||
<body> | ||
报告同一文件中存在重复的 Pest 测试名称。 | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
original-plugin-raw/zh/inspectionDescriptions/GoCoverageInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
报告覆盖率低于某个阈值的方法和文件。 | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/GoHardcodedPasswordsInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测代码中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
var possibleToken = "pa#sw@rd;" | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
const regexPattern = '/[0-9]+:AA[0-9A-Za-z\-_]{33}/' | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
16 changes: 16 additions & 0 deletions
16
original-plugin-raw/zh/inspectionDescriptions/HardcodedPasswordsInComment.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测注释中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 用于检测的正则表达式模式的示例: | ||
/[0-9]+:AA[0-9A-Za-z\-_]{33}/ | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
16 changes: 6 additions & 10 deletions
16
original-plugin-raw/zh/inspectionDescriptions/InfiniteRecursion.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
<html> | ||
<body> | ||
报告除非抛出异常否则无限调用自身的方法。 | ||
<p> | ||
此检查报告的方法不能正常返回。 | ||
虽然此类行为可能是有意为之,但在许多情况下,可能纯属疏忽。 | ||
</p> | ||
报告具有无限递归的方法和函数。 | ||
<p><b>示例:</b></p> | ||
<pre><code> int baz() { | ||
return baz(); | ||
}</code></pre> | ||
<!-- tooltip end --> | ||
|
||
<pre><code> | ||
int factorial(int n) { | ||
return n * factorial(n - 1); | ||
} | ||
</code></pre> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/JSHardcodedPasswords.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测代码中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
var possibleToken = "pa#sw@rd;"; | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
var regexPattern = /[0-9]+:AA[0-9A-Za-z\-_]{33}/; | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/JVMHardcodedPasswordsInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测代码中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
String possibleToken = "pa#sw@rd;"; | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
String regexPattern = "[0-9]+:AA[0-9A-Za-z\\-_]{33}"; | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/JsonHardcodedPasswords.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测 JSON 中的潜在安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
'possibleToken': 'pa#sw@rd;' | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
regexPattern = '/[0-9]+:AA[0-9A-Za-z\-_]{33}/' | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
7 changes: 6 additions & 1 deletion
7
original-plugin-raw/zh/inspectionDescriptions/JupyterKernelInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
<html> | ||
<body> | ||
如果项目解释器未被配置为 Notebook 内核,此检查会发出警告。 它能够防止代码洞察和 Jupyter Notebook 代码单元的运行时行为之间的差异。 | ||
<p>报告 Python 解释器未作为笔记本内核配置的情况。 | ||
此检查可以防止 Jupyter 笔记本代码单元的代码洞察和运行时行为之间的差异。</p> | ||
<p>如果您看到以下警告,则表明新配置的服务器的内核与当前 Python 解释器不匹配。 | ||
例如,它可能已安装了一套不同的软件包。</p> | ||
<p>您可以点击警告横幅上的相应链接,来注册您的 Python 解释器。 之后,即可在配置的服务器内核列表中看到该解释器。</p> | ||
<p>有关详细信息,请参阅<a href="https://www.jetbrains.com/help/pycharm/configuring-jupyter-notebook.html">管理 Jupyter 笔记本服务器</a>。</p> | ||
</body> | ||
</html> |
5 changes: 4 additions & 1 deletion
5
original-plugin-raw/zh/inspectionDescriptions/JupyterPackageInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
<html> | ||
<body> | ||
如果打开 Notebook 文件时未安装 <code>jupyter</code> 软件包,此检查会发出警告。 | ||
<p>报告未为选定的 Python 解释器安装 <code>jupyter</code> 软件包的情况。 没有正确安装的 <code>Jupyter</code> 软件包,就无法执行 Jupyter 笔记本。</p> | ||
<p>点击警告横幅上的相应链接以安装缺失的软件包。 您也可以在项目<b>设置/首选项</b>中或在 | ||
<b>Python 软件包</b>工具窗口中安装此软件包。</p> | ||
<p>有关详细信息,请参阅<a href="https://www.jetbrains.com/help/pycharm/installing-uninstalling-and-upgrading-packages.html">安装 Python 软件包</a>。</p> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/PHPHardcodedPasswords.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测代码中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
$possibleToken = "pa#sw@rd;"; | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
$regexPattern = '/[0-9]+:AA[0-9A-Za-z\-_]{33}/'; | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
original-plugin-raw/zh/inspectionDescriptions/PyCoverageInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<html> | ||
<body> | ||
报告覆盖率低于某个阈值的方法、类和文件。 | ||
</body> | ||
</html> |
2 changes: 1 addition & 1 deletion
2
original-plugin-raw/zh/inspectionDescriptions/PySparkDataFrameColumnInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/PythonHardcodedPasswordsInspection.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测代码中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
possibleToken = "pa#sw@rd;" | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
regexPattern = '/[0-9]+:AA[0-9A-Za-z\-_]{33}/' | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/XmlHardcodedPasswords.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测 XML 中潜在的安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
<possibleToken>pa#sw@rd;</possibleToken> | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
regexPattern = '/[0-9]+:AA[0-9A-Za-z\-_]{33}/' | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
19 changes: 19 additions & 0 deletions
19
original-plugin-raw/zh/inspectionDescriptions/YamlHardcodedPasswords.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<html> | ||
<body> | ||
<p> | ||
使用熵分析和正则表达式检测 YAML 中的潜在安全令牌或密码。 | ||
</p> | ||
<p> | ||
此检查利用熵分析和正则表达式扫描代码库中类似于安全令牌或密码的字符串。 它会高亮显示这些发现,帮助开发者识别和保护潜在的漏洞。 检查的有效性取决于其配置中定义的模式,使其能够适应不同的编码环境和要求。 | ||
</p> | ||
<pre><code> | ||
// 检测为潜在令牌的字符串示例: | ||
possibleToken: pa#sw@rd; | ||
|
||
// 用于检测的正则表达式模式的示例: | ||
regexPattern = '/[0-9]+:AA[0-9A-Za-z\-_]{33}/' | ||
</code></pre> | ||
<!-- tooltip end --> | ||
<p>此注释后的文本将仅显示在检查设置中。</p> | ||
</body> | ||
</html> |
7 changes: 5 additions & 2 deletions
7
original-plugin-raw/zh/intentionDescriptions/AddBracesIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<html><body> | ||
<p>在单行方法主体周围、值定义周围或 if/else 分支周围添加大括号。</p></body></html> | ||
<html> | ||
<body> | ||
添加大括号以控制流语句。 | ||
</body> | ||
</html> |
7 changes: 5 additions & 2 deletions
7
original-plugin-raw/zh/intentionDescriptions/AddNameToArgumentIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<html><body> | ||
<p>将命名实参用作当前和后续的实参。</p></body></html> | ||
<html> | ||
<body> | ||
向函数的所选实参添加形参名称。 | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 17 additions & 3 deletions
20
original-plugin-raw/zh/intentionDescriptions/DemorgansIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
<html> | ||
<body> | ||
遵循德摩根定律将把合取或析取运算替换为取反的对应运算。 | ||
<p>如果布尔运算在 <code>if</code> 或 <code>unless</code> 语句内部,则可以翻转语句修饰符 | ||
以简化最终结果。</p> | ||
在布尔表达式中时,将 | ||
<table> | ||
<tr> | ||
<td> </td> | ||
<td> | ||
<code>a || b</code> 替换为 <code>!(!a && !b)</code> 或 | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> </td> | ||
<td> | ||
<code>a && b</code> 替换为 <code>!(!a || !b)</code> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
。 | ||
</body> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
original-plugin-raw/zh/intentionDescriptions/ExpandBooleanIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
<p>用等效的 <b>if-then-else</b> 语句替换使用布尔表达式的 <b>return</b> 语句。</p> | ||
将使用 <code>boolean</code> 表达式的声明、<code>return</code> 或赋值语句替换为等效的 <code>if</code> <code>else</code> 语句。 | ||
</body> | ||
</html> | ||
</html> |
10 changes: 10 additions & 0 deletions
10
original-plugin-raw/zh/intentionDescriptions/GoExcludePrintfFuncIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<html> | ||
<body> | ||
排除将函数或方法标识为类似于 <code>fmt.Printf</code> 的格式化程序函数的情况: | ||
<ul> | ||
<li>将不会检查格式字符串中是否动词的错误用法,如 <code>%s</code>、<code>%d</code>、<code>%v</code> 和其他</li> | ||
<li>将不会高亮显示格式字符串中的格式化动词</li> | ||
<li>将禁用最终格式化字符串的插值(代码折叠)</li> | ||
</ul> | ||
</body> | ||
<!-- tooltip end --> |
10 changes: 10 additions & 0 deletions
10
original-plugin-raw/zh/intentionDescriptions/GoIncludePrintfFuncIntention/description.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<html> | ||
<body> | ||
将函数标记为类似于 <code>fmt.Printf</code> 的格式化程序函数: | ||
<ul> | ||
<li>将检查格式字符串是否使用错误的格式化动词,如 <code>%s</code>、<code>%d</code>、<code>%v</code> 和其他</li> | ||
<li>将高亮显示格式字符串中的格式化动词</li> | ||
<li>当启用代码折叠功能时,将启用最终格式化字符串的插值(代码折叠)。</li> | ||
</ul> | ||
</body> | ||
<!-- tooltip end --> |
Oops, something went wrong.