From 92880e450ceab151e3c2bcbc685f4bc7c81e74b9 Mon Sep 17 00:00:00 2001 From: Shea McKinney Date: Mon, 29 Aug 2016 17:18:48 -0700 Subject: [PATCH 1/3] Missed a couple of RC3s --- README.md | 2 +- modules/capx_auto_nodetitle/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a23e474f..0e261534 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Stanford CAPx -#### Version 2.x RC2 +#### Version 2.x RC3 Stanford CAP Extensible module builds on some great work. This module provides an interface for administrators to pull information directly from the CAP API into Drupal. This allows profile owners to continue to manage their profile information on the CAP web service and have that information automatically reflected into a Drupal website. diff --git a/modules/capx_auto_nodetitle/README.md b/modules/capx_auto_nodetitle/README.md index 888949f6..8a37b516 100644 --- a/modules/capx_auto_nodetitle/README.md +++ b/modules/capx_auto_nodetitle/README.md @@ -1,5 +1,5 @@ #[CAPX Auto Nodetitle](https://github.com/SU-SWS/stanford_capx/tree/7.x-1.x/modules/capx_auto_nodetitle) -##### Version: 7.x-1.x +##### Version: 7.x-2.0-rc3 Maintainers: [jbickar](https://github.com/jbickar), [sherakama](https://github.com/sherakama) [Changelog.txt](CHANGELOG.txt) From 5a0b526c129c25300a7862f5cd1217f56dd6ceab Mon Sep 17 00:00:00 2001 From: Kenzo Makitani Date: Wed, 7 Sep 2016 15:39:03 -0700 Subject: [PATCH 2/3] Create .codeclimate.yml --- .codeclimate.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 00000000..2b5b456f --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,26 @@ +engines: + eslint: + enabled: true + csslint: + enabled: true + phpcodesniffer: + enabled: true + phpmd: + enabled: true + scss-lint: + enabled: true +ratings: + paths: + - "**.inc" + - "**.module" + - "**.profile" + - "**.php" + - "**.install" +##exclude these files/paths +exclude_paths: +- "**.features.**" +- "**.views_default.inc" +- "**.field_group.inc" +- "**.ds.inc" +- "**.bean.inc" +- "**.context.inc" From d12de0781348f85c95eae12544c33ab20ef3947d Mon Sep 17 00:00:00 2001 From: Kenzo Makitani Date: Thu, 8 Sep 2016 09:26:54 -0700 Subject: [PATCH 3/3] Update .codeclimate.yml --- .codeclimate.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 2b5b456f..53e7b12c 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -5,8 +5,18 @@ engines: enabled: true phpcodesniffer: enabled: true + config: + file_extensions: "php,inc,install,module,profile" + standard: "Drupal" phpmd: enabled: true + config: + file_extensions: + - inc + - module + - profile + - php + - install scss-lint: enabled: true ratings: @@ -16,6 +26,10 @@ ratings: - "**.profile" - "**.php" - "**.install" + - "**.css" + - "**.scss" + - "**.sass" + - "**.js" ##exclude these files/paths exclude_paths: - "**.features.**" @@ -24,3 +38,6 @@ exclude_paths: - "**.ds.inc" - "**.bean.inc" - "**.context.inc" +- "test/**/*" +- "**/vendor/**/*" +- "**.min.*"