You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ch...@apache.org on 2022/08/06 12:50:54 UTC

[dolphinscheduler] branch dev updated: [Bug][Doc] Fix typos in docs which causes links to upgrade section to fail (#11333)

This is an automated email from the ASF dual-hosted git repository.

chufenggao pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 3aa9f2ea25 [Bug][Doc] Fix typos in docs which causes links to upgrade section to fail (#11333)
3aa9f2ea25 is described below

commit 3aa9f2ea25ca42112141aad85140a72b0963e2c3
Author: Eric Gao <er...@gmail.com>
AuthorDate: Sat Aug 6 20:50:48 2022 +0800

    [Bug][Doc] Fix typos in docs which causes links to upgrade section to fail (#11333)
    
    * [Bug][Doc] Fix typo in docs
    
    * Remove dead links and update related docs
---
 docs/docs/en/contribute/join/pull-request.md       |  21 ++-------------------
 .../en/guide/{upgrede => upgrade}/incompatible.md  |   0
 docs/docs/en/guide/{upgrede => upgrade}/upgrade.md |   0
 docs/docs/zh/contribute/join/pull-request.md       |  19 ++-----------------
 .../zh/guide/{upgreade => upgrade}/incompatible.md |   0
 .../docs/zh/guide/{upgreade => upgrade}/upgrade.md |   0
 .../join/pull-request/checkstyle-idea.png          | Bin 128175 -> 0 bytes
 .../join/pull-request/code-style-idea.png          | Bin 397042 -> 0 bytes
 8 files changed, 4 insertions(+), 36 deletions(-)

diff --git a/docs/docs/en/contribute/join/pull-request.md b/docs/docs/en/contribute/join/pull-request.md
index 42374bab84..5127845e3a 100644
--- a/docs/docs/en/contribute/join/pull-request.md
+++ b/docs/docs/en/contribute/join/pull-request.md
@@ -62,25 +62,8 @@ Please refer to the commit message section.
 
 ### Pull Request Code Style
 
-Code style is the thing you have to consider when you submit pull request for DolphinScheduler. We using [Checkstyle](https://checkstyle.sourceforge.io), a development tool to help programmers write Java code that adheres to a coding standard, in CI to keep DolphinScheduler codebase in the same style. Your pull request could not be merged if your code style checker failed. You could format your code by *Checkstyle* in your local environment before you submit your pull request to check co [...]
-
-1. Prepare Checkstyle configuration file: You could download it manually by [click here](https://github.com/apache/dolphinscheduler/blob/dev/style/checkstyle.xml), but find it in DolphinScheduler repository would be a better way. You could find configuration file in the path `style/checkstyle.xml` after you clone repository from Github.
-
-2. Download Checkstyle plugins in Intellij IDEA: Search plugin by keyword **CheckStyle-IDEA** or install in [this page](https://plugins.jetbrains.com/plugin/1065-checkstyle-idea). You could see [install plugin](https://www.jetbrains.com/help/idea/managing-plugins.html#install_plugin_from_repo) if you do not know how to install plugin in Intellij IDEA
-
-3. Configure and activate Checkstyle and Intellij IDEA code-style: After completing the above steps, you could configure and activate it in your environment. You could find Checkstyle plugins in the path `Preferences -> Tool -> Checkstyle`. After that you could activate Checkstyles as screenshot show
-
-<p align="center">
-    <img src="../../../../img/contribute/join/pull-request/checkstyle-idea.png" alt="checkstyle idea configuration" />
-</p>
-
-For now your Checkstyle plugins are setup, it would show codes and files which out of style. We highly recommend you configure Intellij IDEA code-style for auto-formatting your code in Intellij IDEA, you could find this setting in `Preferences -> Editor -> Code Style -> Java` and then activate it as screenshot show
-
-<p align="center">
-    <img src="../../../../img/contribute/join/pull-request/code-style-idea.png" alt="code style idea configuration" />
-</p>
-
-1. Format your codebase in Intellij IDEA before submit your pull request: After you done above steps, you could using Intellij IDEA shortcut `Command + L`(for Mac) or `Ctrl+L`(for Windows) to format your code. The best time to format your code is before you commit your change to your local git repository.
+DolphinScheduler uses `Spotless` to automatically fix code style and formatting errors, 
+see [Code Style](../development-environment-setup.md#code-style) for details. 
 
 ### Question
 
diff --git a/docs/docs/en/guide/upgrede/incompatible.md b/docs/docs/en/guide/upgrade/incompatible.md
similarity index 100%
rename from docs/docs/en/guide/upgrede/incompatible.md
rename to docs/docs/en/guide/upgrade/incompatible.md
diff --git a/docs/docs/en/guide/upgrede/upgrade.md b/docs/docs/en/guide/upgrade/upgrade.md
similarity index 100%
rename from docs/docs/en/guide/upgrede/upgrade.md
rename to docs/docs/en/guide/upgrade/upgrade.md
diff --git a/docs/docs/zh/contribute/join/pull-request.md b/docs/docs/zh/contribute/join/pull-request.md
index f280e6bcdd..3db4b68e27 100644
--- a/docs/docs/zh/contribute/join/pull-request.md
+++ b/docs/docs/zh/contribute/join/pull-request.md
@@ -64,23 +64,8 @@ waste time。
 
 ### Pull Request Code Style
 
-当你向 DolphinScheduler 提交 pull request 的时候 code-style 是你不得不考虑的问题。我们在 CI 中使用 Checkstyle [参考](https://checkstyle.sourceforge.io/)来保持代码风格的统一,它是一种帮助开发者编写遵循编码规范的 Java 代码开发工具。如果你的 pull request 没有通过 Checkstyle 的检测,那它将不会被合并到主库中。你可以在提交 pull request 前使用 Checkstyle 来检测或者格式化你的代码。如下的步骤将引领你配置并激活 Checkstyle
-
-1. 准备 Checkstyle 配置文件:你可以点击[这里](https://github.com/apache/dolphinscheduler/blob/dev/style/checkstyle.xml)手动下载,但是我们更加推荐在 DolphinScheduler 代码库中找到它。当你将代码库克隆下来后,你可以在路径 `style/checkstyle.xml` 下找到配置文件
-2. 下载 Intellij IDEA Checkstyle 插件:通过关键字**CheckStyle-IDEA**或者通过[这个页面](https://plugins.jetbrains.com/plugin/1065-checkstyle-idea)安装均可。如果你不清楚如何安装Intellij IDEA插件,可以参考[这个连接](https://www.jetbrains.com/help/idea/managing-plugins.html#install_plugin_from_repo)
-3. 配置并激活 Checkstyles 以及 Intellij IDEA 代码风格:当完成上面几步后,你就可以配置并激活他们了。你可以在路径`Preferences -> Tool -> Checkstyle`中找到 Checkstyle,请参照下图完成其配置
-
-<p align="center">
-    <img src="../../../../img/contribute/join/pull-request/checkstyle-idea.png" alt="checkstyle idea configuration" />
-</p>
-
-截止目前,Checkstyle 插件已经配置完成了,当有代码或者文件不符合风格时就会显示在 Checkstyle 中。但强烈建议同时配置 Intellij IDEA 的代码风格,完成配置后可以使用 Intellij IDEA 自动格式化功能。你可以在路径`Preferences -> Editor -> Code Style -> Java`找到配置,请参照下图完成其配置
-
-<p align="center">
-    <img src="../../../../img/contribute/join/pull-request/code-style-idea.png" alt="code style idea configuration" />
-</p>
-
-1. 在提交 pull request 前格式化你的代码:完成上面全部后,你可以使用快捷键`Command + L`(Mac用户) or `Ctrl+L`(Windows用户)在 Intellij IDEA 完成自动格式化。格式化代码的最佳时间是将你的修改提交到本地 git 版本库之前
+DolphinScheduler使用`Spotless`为您自动修复代码风格和格式问题,
+详情见[代码风格](../development-environment-setup.md#代码风格)。
 
 ### 相关问题
 
diff --git a/docs/docs/zh/guide/upgreade/incompatible.md b/docs/docs/zh/guide/upgrade/incompatible.md
similarity index 100%
rename from docs/docs/zh/guide/upgreade/incompatible.md
rename to docs/docs/zh/guide/upgrade/incompatible.md
diff --git a/docs/docs/zh/guide/upgreade/upgrade.md b/docs/docs/zh/guide/upgrade/upgrade.md
similarity index 100%
rename from docs/docs/zh/guide/upgreade/upgrade.md
rename to docs/docs/zh/guide/upgrade/upgrade.md
diff --git a/docs/img/contribute/join/pull-request/checkstyle-idea.png b/docs/img/contribute/join/pull-request/checkstyle-idea.png
deleted file mode 100644
index 023fc3a540..0000000000
Binary files a/docs/img/contribute/join/pull-request/checkstyle-idea.png and /dev/null differ
diff --git a/docs/img/contribute/join/pull-request/code-style-idea.png b/docs/img/contribute/join/pull-request/code-style-idea.png
deleted file mode 100644
index 6c2ecfaa1b..0000000000
Binary files a/docs/img/contribute/join/pull-request/code-style-idea.png and /dev/null differ