mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
d0098efa95
This commit introduces a few things. Basically I didn't like the fact that although we had a coding style document, no one was following it. See https://github.com/irungentoo/ProjectTox-Core/issues/453 for more info regarding that. This commit just marks the first of my efforts to refactor the code base according to the posted coding style document by introducing an astylerc and a optional git pre-commit hook. I propose that users can add this functionality as a pre-commit hook. More info is in the README file. However, this has only been tested on Linux and I imagine should work on OSX as well. I don't think pre-commit hooks work on Windows, but I may be mistaken. The future commits I plan are refactoring the source files for other offending items such as using typedefs. See http://wiki.tox.im/index.php/Coding_Style.
10 lines
438 B
Plaintext
10 lines
438 B
Plaintext
This directory can house various tools and utilities.
|
|
|
|
astylerc
|
|
- This file can be used in the precommit hook to try its best at making the code conform to the coding style document.
|
|
|
|
pre-commit (*NIX only at the moment)
|
|
- Lints your file in adherence to the coding style doucment as best as possible in terms of spacing, indenting, etc.
|
|
- Requires you to have astyle installed.
|
|
- To use, copy this file to ProjectTox-Core/.git/hooks
|