From 65cad7653662f4ab45d813f8c3a029a2f68f4695 Mon Sep 17 00:00:00 2001 From: Scott Larkin Date: Fri, 3 Feb 2017 12:52:57 -0500 Subject: [PATCH] Create .codeclimate.yml Created a Code Climate config with PHP Code Sniffer and our duplication engine enabled. --- .codeclimate.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000000..7b4b01c8eb --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,16 @@ +engines: + duplication: + enabled: true + config: + languages: + - php + phpcodesniffer: + enabled: true + config: + standard: "PSR1,PSR2" + +ratings: + paths: + - "**.php" + +exclude_paths: