summaryrefslogtreecommitdiff
path: root/protocols/Tox/toxcore/tools
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Tox/toxcore/tools')
-rw-r--r--protocols/Tox/toxcore/tools/README11
-rw-r--r--protocols/Tox/toxcore/tools/astylerc11
-rw-r--r--protocols/Tox/toxcore/tools/pre-commit17
3 files changed, 0 insertions, 39 deletions
diff --git a/protocols/Tox/toxcore/tools/README b/protocols/Tox/toxcore/tools/README
deleted file mode 100644
index 26802ec73d..0000000000
--- a/protocols/Tox/toxcore/tools/README
+++ /dev/null
@@ -1,11 +0,0 @@
-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
diff --git a/protocols/Tox/toxcore/tools/astylerc b/protocols/Tox/toxcore/tools/astylerc
deleted file mode 100644
index dd738b7406..0000000000
--- a/protocols/Tox/toxcore/tools/astylerc
+++ /dev/null
@@ -1,11 +0,0 @@
---style=kr
- --pad-header
- --max-code-length=120
- --convert-tabs
- --indent-switches
- --pad-oper
- --align-pointer=name
- --align-reference=name
- --preserve-date
- --lineend=linux
- --break-blocks \ No newline at end of file
diff --git a/protocols/Tox/toxcore/tools/pre-commit b/protocols/Tox/toxcore/tools/pre-commit
deleted file mode 100644
index 8f91779df7..0000000000
--- a/protocols/Tox/toxcore/tools/pre-commit
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env sh
-#
-# An example hook script to verify what is about to be committed.
-# Called by "git commit" with no arguments. The hook should
-# exit with non-zero status after issuing an appropriate message if
-# it wants to stop the commit.
-#
-# To enable this hook, rename this file to "pre-commit".
-
-for file in `git diff-index --diff-filter=ACMR --name-only HEAD`; do
- if [[ $file == *.c || $file == *.h ]]
- then
- echo $file
- `which astyle` $file --options=tools/astylerc
- git add $file
- fi
-done \ No newline at end of file