From eaacaae5f1046cfb8d5dec972dfa03c62b6a6039 Mon Sep 17 00:00:00 2001 From: efueger Date: Mon, 23 Jan 2017 13:06:59 -0500 Subject: [PATCH] Update .codeclimate.yml Add engines to make Code Climate analysis work. PS: there are 10k + issues found when PHPMD is run right now. Definitely feel free to check out the [config options](https://docs.codeclimate.com/docs/phpmd#section-configure-the-engine) for that engine! --- .codeclimate.yml | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index a31ae35..3ce3ce9 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,8 +1,33 @@ -JavaScript: true -Ruby: false -Python: false -PHP: true +--- +engines: + csslint: + enabled: true + duplication: + enabled: true + config: + languages: + - ruby + - javascript + - python + - php + eslint: + enabled: true + fixme: + enabled: true + phpmd: + enabled: true +ratings: + paths: + - "**.css" + - "**.inc" + - "**.js" + - "**.jsx" + - "**.module" + - "**.php" + - "**.py" + - "**.rb" exclude_paths: +- config/ - "language/" - "plugins/" - "readme/"