添加编辑器配置文件

pull/18/head
Wenda Zhang 1 year ago
parent 939f366b14
commit fc82b229c9

@ -332,6 +332,35 @@ System is shutting down with exit code -1.
如果能看到以上输出riscv-pke的代码获取和验证就已经完成可以开始实验了。
#### 添加编辑器配置文件
PKE实验涉及到了多种编程语言每种的缩进方式都不尽相同建议使用各大编辑器通用的editorconfig来配置。可以在PKE目录下添加一个名为`.editorconfig`的文件,内容为:
```editorconfig
; https://editorconfig.org
root = true
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
[*.{c,h}]
indent_size = 2
[*.S]
indent_size = 4
[*.ld]
indent_size = 2
[Makefile]
indent_style = tab
indent_size = 8
```
<a name="pke_experiemnts"></a>
## 2.3 PKE实验的组成

Loading…
Cancel
Save