Commit 56d1d95d4f82c91bb7475bf3ad63776321ad877e

Authored by Stéphane Raimbault
1 parent 1f84d40a

Replace .dir-locals.el (Emacs) by .editorconfig

.dir-locals.el deleted
1   -((nil . ((indent-tabs-mode . nil)
2   - (c-basic-offset . 4)
3   - (fill-column . 80))))
4   -
.editorconfig 0 → 100644
  1 +root = true
  2 +
  3 +# Unix-style newlines with a newline ending every file
  4 +[*]
  5 +end_of_line = lf
  6 +insert_final_newline = true
  7 +indent_style = space
  8 +indent_size = 4
  9 +
  10 +# Tab indentation (no size specified)
  11 +[Makefile]
  12 +indent_style = tab
... ...