diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -1,4 +1,4 @@ | |||
1 | # Ignore data/, tmp/, cache/ and pagecache/ | 1 | # Shaarli runtime resources |
2 | data | 2 | data |
3 | tmp | 3 | tmp |
4 | cache | 4 | cache |
@@ -9,18 +9,22 @@ pagecache | |||
9 | .buildpath | 9 | .buildpath |
10 | .project | 10 | .project |
11 | 11 | ||
12 | # Ignore raintpl generated pages | 12 | # Raintpl generated pages |
13 | *.rtpl.php | 13 | *.rtpl.php |
14 | 14 | ||
15 | # Ignore test dependencies | 15 | # 3rd-party dependencies |
16 | composer.lock | 16 | composer.lock |
17 | /vendor/ | 17 | vendor/ |
18 | 18 | ||
19 | # Ignore development and test resources | 19 | # Release archives |
20 | *.tar | ||
21 | *.zip | ||
22 | |||
23 | # Development and test resources | ||
20 | coverage | 24 | coverage |
21 | doxygen | 25 | doxygen |
22 | sandbox | 26 | sandbox |
23 | phpmd.html | 27 | phpmd.html |
24 | 28 | ||
25 | # Ignore user plugin configuration | 29 | # User plugin configuration |
26 | plugins/*/config.php | 30 | plugins/*/config.php |