Skip to content

Commit 34458c1

Browse files
committed
update docs
1 parent 68e2da1 commit 34458c1

14 files changed

+325
-295
lines changed

.editorconfig

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
1-
# EditorConfig helps developers define and maintain consistent
2-
# coding styles between different editors and IDEs
3-
# http://editorconfig.org
4-
# 所有文件换行以 Unix like 风格(LF),win 格式特定的除外(bat)
5-
# 缩进 java 4 个空格,其他所有文件 2 个空格
1+
# EditorConfig 用于在 IDE 中检查代码的基本 Code Style
2+
# @see: https://editorconfig.org/
3+
4+
# 配置说明:
5+
# 所有文件换行使用 Unix 风格(LF),*.bat 文件使用 Windows 风格(CRLF)
6+
# java / sh 文件缩进 4 个空格,其他所有文件缩进 2 个空格
67

78
root = true
89

910
[*]
10-
# Unix-style newlines with a newline ending every file
1111
end_of_line = lf
12-
13-
# Change these settings to your own preference
14-
indent_style = space
1512
indent_size = 2
16-
17-
# We recommend you to keep these unchanged
13+
indent_style = tab
14+
max_line_length = 120
1815
charset = utf-8
1916
trim_trailing_whitespace = true
2017
insert_final_newline = true
2118

22-
[*.bat]
19+
[*.{bat, cmd}]
2320
end_of_line = crlf
2421

25-
[*.{java, sh}]
26-
indent_style = tab
22+
[*.{java, groovy, kt, sh}]
2723
indent_size = 4
2824

2925
[*.md]
26+
max_line_length = 0
3027
trim_trailing_whitespace = false

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@
7070
*.pdf binary
7171
*.doc binary
7272
*.docx binary
73+
*.ppt binary
74+
*.pptx binary
7375
*.xls binary
7476
*.xlsx binary
7577
*.xmind binary

.gitignore

+37-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,42 @@
1-
################ JAVASCRIPT ################
1+
# ---------------------------------------------------------------------
2+
# more gitignore templates see https://github.com/github/gitignore
3+
# ---------------------------------------------------------------------
4+
5+
# ------------------------------- java -------------------------------
6+
# compiled folders
7+
classes
8+
target
9+
logs
10+
.mtj.tmp/
11+
12+
# compiled files
13+
*.class
14+
15+
# bluej files
16+
*.ctxt
17+
18+
# package files #
19+
*.jar
20+
*.war
21+
*.nar
22+
*.ear
23+
*.zip
24+
*.tar.gz
25+
*.rar
26+
27+
# virtual machine crash logs
28+
hs_err_pid*
29+
30+
# maven plugin temp files
31+
.flattened-pom.xml
32+
33+
34+
# ------------------------------- javascript -------------------------------
235
# dependencies
336
node_modules
437

538
# temp folders
39+
build
640
dist
741
_book
842
_jsdoc
@@ -15,11 +49,11 @@ yarn-error.log*
1549
bundle*.js
1650

1751

18-
################ IDEA ################
52+
# ------------------------------- intellij -------------------------------
1953
.idea
2054
*.iml
2155

2256

23-
################ Eclipse ################
57+
# ------------------------------- eclipse -------------------------------
2458
.classpath
2559
.project

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Linux 教程
22

3-
> :keyboard: 项目同步维护在 [github](https://github.com/dunwu/linux-tutorial) | [gitee](https://gitee.com/turnon/linux-tutorial)
3+
> 🔁 项目同步维护在 [github](https://github.com/dunwu/linux-tutorial) | [gitee](https://gitee.com/turnon/linux-tutorial)
44
>
55
> 📖 [电子书](https://dunwu.github.io/linux-tutorial/) | [电子书(国内)](http://turnon.gitee.io/linux-tutorial/)
66
7-
| :wrench: | :shell: | :memo: | :books: |
7+
| :wrench: | :shell: | :memo: | 📚 |
88
| :-------------------: | :-------------------: | :---------------: | :-------------------: |
99
| [软件运维](#软件运维) | [运维和脚本](#运维和脚本) | [知识点](#知识点) | [学习资源](#学习资源) |
1010

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Linux 教程
22

3-
> :keyboard: 项目同步维护在 [github](https://github.com/dunwu/linux-tutorial) | [gitee](https://gitee.com/turnon/linux-tutorial)
3+
> 🔁 项目同步维护在 [github](https://github.com/dunwu/linux-tutorial) | [gitee](https://gitee.com/turnon/linux-tutorial)
44
>
55
> 📖 [电子书](https://dunwu.github.io/linux-tutorial/) | [电子书(国内)](http://turnon.gitee.io/linux-tutorial/)
66
7-
| :wrench: | :shell: | :memo: | :books: |
7+
| :wrench: | :shell: | :memo: | 📚 |
88
| :-------------------: | :-------------------: | :---------------: | :-------------------: |
99
| [软件运维](#软件运维) | [运维和脚本](#运维和脚本) | [知识点](#知识点) | [学习资源](#学习资源) |
1010

docs/coverpage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div align="center"><img width="100px" src="http://dunwu.test.upcdn.net/common/logo/zp.png"/></div>
22

3-
# Linux Tutorial
3+
# linux-tutorial
44

55
> Linux 教程
66

docs/git/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- [git-flow 工作流](git-flow.md)
88
- [Git 常见问题](git-faq.md)
99

10-
## :books: 学习资源
10+
## 📚 学习资源
1111

1212
### 官方资源
1313

0 commit comments

Comments
 (0)