File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # This directory has to exist to allow cache files to be written to it.
Original file line number Diff line number Diff line change 55# https://www.reddit.com/r/PHP/comments/2jzp6k/i_dont_need_your_tests_in_my_production
66# https://blog.madewithlove.be/post/gitattributes/
77#
8+ .cache export-ignore
89.github export-ignore
910grunt export-ignore
1011tests export-ignore
Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ nightwatch.conf.js
99
1010phpcs.xml
1111.phpcs.xml
12+ .cache /phpcs.cache
1213phpunit.xml
Original file line number Diff line number Diff line change 2929 <!-- Check up to 8 files simultaneously. -->
3030 <arg name =" parallel" value =" 8" />
3131
32+ <!-- Cache the results between runs. -->
33+ <arg name =" cache" value =" ./.cache/phpcs.cache" />
34+
3235
3336 <!--
3437 #############################################################################
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ dist: trusty
44cache :
55 yarn : true
66 directories :
7+ - .cache
78 - vendor
89 # Cache directory for older Composer versions.
910 - $HOME/.composer/cache/files
You can’t perform that action at this time.
0 commit comments