diff options
author | VirtualTam <virtualtam@flibidi.org> | 2015-02-25 22:08:50 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.org> | 2015-03-05 23:28:43 +0100 |
commit | 00f98bdacaba026e3d16aed36605bc21b72903ab (patch) | |
tree | a9cbb69f91ff7fee3a6f72dc87399a2034f95971 /.gitignore | |
parent | 3a10fa0e3f0d0978dc359d1407b93fe425f44b25 (diff) | |
download | Shaarli-00f98bdacaba026e3d16aed36605bc21b72903ab.tar.gz Shaarli-00f98bdacaba026e3d16aed36605bc21b72903ab.tar.zst Shaarli-00f98bdacaba026e3d16aed36605bc21b72903ab.zip |
Code quality: Makefile to run static code checkers
Relates to #71
Relates to #95
Additions:
- Makefile for easy usage,
- Composer file to declare dev & test dependencies.
Features:
- PHP Copy/Paste Detect: detect duplicate code;
- PHP Code Sniffer: static analysis, syntax checking,
- PHP Mess Detector: static analysis, syntax checking.
Signed-off-by: VirtualTam <virtualtam@flibidi.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -10,4 +10,11 @@ pagecache | |||
10 | .project | 10 | .project |
11 | 11 | ||
12 | # Ignore raintpl generated pages | 12 | # Ignore raintpl generated pages |
13 | *.rtpl.php \ No newline at end of file | 13 | *.rtpl.php |
14 | |||
15 | # Ignore test dependencies | ||
16 | composer.lock | ||
17 | /vendor/ | ||
18 | |||
19 | # Ignore test output | ||
20 | phpmd.html | ||