Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-20Add braces around all if/else/while/etc statementsBrendan Long
This will make it easier to programatically fix the indentation.
2018-12-28Run Vala code though UncrustifyBrendan Long
This uses the changes in these two Uncrustify pull requests: https://github.com/uncrustify/uncrustify/pull/2142 https://github.com/uncrustify/uncrustify/pull/2137
2017-07-25Revert "Add uncrustify config and fix indentation"Brendan Long
This reverts commit ef1719f31bc83a73e6308e226ccae6359273bb8b. Uncrustify wants to add spaces around ? even in type signatures, so I'm undoing this to avoid that annoyance.
2017-07-22Add uncrustify config and fix indentationBrendan Long
This adds an uncrustify config to: - indent with one tab - remove BOM - force UTF-8 - force spaces around operators - remove spaces before commas - add spaces after commas - remove excess (>2) blank lines There's a lot more we could do with this, but the indentation was the really annoying one. See issue #516