Skip to content

Instantly share code, notes, and snippets.

@dozer111
Last active July 18, 2022 07:33
Show Gist options
  • Save dozer111/2432d9b711db38968d12f2101d2036bb to your computer and use it in GitHub Desktop.
Save dozer111/2432d9b711db38968d12f2101d2036bb to your computer and use it in GitHub Desktop.
cs-fixer

/etc/bash.bashrc

# пофіксить тільки те, що змінилось в цій гілці
function ff(){
	CHANGED_FILES=$(git diff --name-only origin/master | grep ".php" | tr '\n' ' ');
	php ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff -v --allow-risky=yes --path-mode=intersection --using-cache=no -- ${CHANGED_FILES}
}
export -f ff #працює як аліас, щоб запустить вводимо "ff" в руті сервіса

# пофіксить весь проект
alias fff="php ./vendor/bin/php-cs-fixer fix --allow-risky=yes --using-cache=no --diff -v"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment