dlang-community / Pegged

A Parsing Expression Grammar (PEG) module, using the D programming language.
534 stars 66 forks source link

Add a .editorconfig file and normalize spaces/tabs #277

Closed Zardoz89 closed 4 years ago

Zardoz89 commented 4 years ago

Add a .editorconfig file, normalize spaces/tabs and remove trailing spaces. The actual code files look a mess of mixed tabs and spaces.

Something like this (

root = true

[*.{c,h,d,di,dd,ddoc}]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
charset = utf-8