From a4750e418754248d8ca503c02c74cf9e45ae86f0 Mon Sep 17 00:00:00 2001 From: BlastCI Date: Tue, 31 Oct 2017 12:30:55 +0100 Subject: [PATCH] DevKit updates --- .scrutinizer.yml | 13 +++++++++++++ .travis.yml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 .scrutinizer.yml diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 0000000..b3a70fe --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,13 @@ +filter: + excluded_paths: + - 'vendor/*' + - 'bin/*' + - '*.min.js' +checks: + php: true + javascript: true +coding_style: + php: + spaces: + around_operators: + concatenation: true diff --git a/.travis.yml b/.travis.yml index b014048..a36609c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,7 +52,7 @@ before_script: - if [ -x ${SCRIPTS_FOLDER}/before_script_${TARGET}.sh ]; then ${SCRIPTS_FOLDER}/before_script_${TARGET}.sh; fi; script: - - if [ -x ${SCRIPTS_FOLDER}/run_${TARGET}.sh ]; then ${SCRIPTS_FOLDER}/run_${TARGET}.sh; fi;make $TARGET + - if [ -x ${SCRIPTS_FOLDER}/run_${TARGET}.sh ]; then ${SCRIPTS_FOLDER}/run_${TARGET}.sh; fi; after_success: - if [ -x ${SCRIPTS_FOLDER}/after_success_${TARGET}.sh ]; then ${SCRIPTS_FOLDER}/after_success_${TARGET}.sh; fi;