This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 84faa57d401b07df3f5cf645519614604e257c10 Mon Sep 17 00:00:00 2001 | |
From: "Joseph D. Purcell" <[email protected]> | |
Date: Sun, 24 Jul 2016 16:20:12 -0500 | |
Subject: [PATCH] Add Code Climate config for Drupal 8 modules | |
--- | |
.codeclimate.yml | 25 ++++++++++++++++++ | |
.phpmd.xml | 78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
2 files changed, 103 insertions(+) | |
create mode 100644 .codeclimate.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s/, /,\r / | '{,.s/ FROM/\rFROM/ | '{,'}s/ JOIN/\r JOIN/ | s/ WHERE/\rWHERE/ | s/ AND/\r AND/ | '{,'}s/ ORDER/\rORDER/ | '{,'}s/ LIMIT/\rLIMIT/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prompt (Debian) | |
source /usr/local/bin/git-completion.sh | |
# Prompt (OS X + homebrew) | |
source /usr/local/etc/bash_completion.d/git-completion.bash | |
PS1="\[\033[31;38m\]\w\[\033[1;31m\]\$(__git_ps1)\[\033[00m\] " | |
export GIT_PS1_SHOWDIRTYSTATE=1 |