stecman / symfony-console-completion

Automatic tab-key completion for Symfony console application options, arguments and parameters
MIT License
421 stars 26 forks source link

Ignore user-specific PHPUnit config file and build folder #23

Closed aik099 closed 9 years ago

aik099 commented 9 years ago

If user needs to change PHPUnit config file (the phpunit.xml.dist) the common practice is to create phpunit.xml file with user specific options.

Currently this file shows as uncommited. This PR adds it to .gitignore. Also the build folder, that potentially can contain build-specific artefacts like converage reports is ignored now.

stecman commented 9 years ago

Will that build folder always be in the root? If so, it'd be good to limit the ignore to that: /build/

aik099 commented 9 years ago

Yes it will. I've updated the PR. I just selected build folder to be ignored in SourceTree and that's what was added.

stecman commented 9 years ago

Great, thanks :+1: