You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In clixon source, there is an .editorconfig as follows
indent_style = tab
indent_size = 4
Currently there are TABS inserted in places that are not completely logical.
It is proposed to remove the use of TABS completely, ie always use spaces instead of TABs in C-code.
In emacs, this means: (setq-default indent-tabs-mode nil)
A small sample of other C-based projects seems to indicate that this seems common practice.
It is therefore also proposed to update editorconfig to (at least):
indent_style = space
indent_size = 4
This will result in a major code change (ie only appearance), replacing all tabs to spaces.
See also #373
The text was updated successfully, but these errors were encountered:
In clixon source, there is an .editorconfig as follows
Currently there are TABS inserted in places that are not completely logical.
It is proposed to remove the use of TABS completely, ie always use spaces instead of TABs in C-code.
In emacs, this means:
(setq-default indent-tabs-mode nil)
A small sample of other C-based projects seems to indicate that this seems common practice.
It is therefore also proposed to update editorconfig to (at least):
This will result in a major code change (ie only appearance), replacing all tabs to spaces.
See also
#373
The text was updated successfully, but these errors were encountered: