Nuclei-Software / nuclei-sdk

Nuclei RISC-V Software Development Kit
https://doc.nucleisys.com/nuclei_sdk
Apache License 2.0
117 stars 50 forks source link

soc: Replace TABs with spaces. #19

Closed RomanBuchert closed 3 years ago

RomanBuchert commented 3 years ago

As requested from @fanghuaqi in https://github.com/Nuclei-Software/nuclei-sdk/pull/17#pullrequestreview-542554615, I also replaced all TABs with spaces in subfolder SoC to meet the styleguide.

fanghuaqi commented 3 years ago

Which tool do you use to format the code?

RomanBuchert commented 3 years ago

@fanghuaqi I've used find . -type f -iname *.[ch] -exec sed -i 's/\t/ /g' {} \; and manually checked the files to correct any incorrectly indented lines.

fanghuaqi commented 3 years ago

Ok, thank you for your information.