From 1d5d1bb2be826318610f11d4075b2b10f8d84a0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 27 Jan 2016 14:43:47 +0100 Subject: Configured CodeClimate to skip analyzing rsa/_version*.py These files contain old code which has been deprecated. Analysis is useless as best, as those files will be removed soon anyway. --- .codeclimate.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .codeclimate.yml (limited to '.codeclimate.yml') diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..14441ba --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,27 @@ +--- +engines: + duplication: + enabled: true + config: + languages: + - ruby + - javascript + - python + - php + fixme: + enabled: true + radon: + enabled: true +ratings: + paths: + - "**.inc" + - "**.js" + - "**.jsx" + - "**.module" + - "**.php" + - "**.py" + - "**.rb" +exclude_paths: +- tests/**/* +- rsa/_version*.py + -- cgit v1.2.1