From 26d0e43c017c29ab125687ef49c50734ff754ba1 Mon Sep 17 00:00:00 2001 From: tunnckoCore Date: Tue, 26 Jan 2016 03:39:06 +0200 Subject: [PATCH] update dotfiles --- .codeclimate.yml | 7 +++++++ .editorconfig | 9 +++++---- .gitignore | 4 ---- .travis.yml | 8 ++++++-- 4 files changed, 18 insertions(+), 10 deletions(-) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..95aa3cc --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,7 @@ +languages: + JavaScript: true +exclude_paths: +- "dist/**/*" +- "dist/*.js" +- "dist/**/*.js" +- "dist/**.js" \ No newline at end of file diff --git a/.editorconfig b/.editorconfig index 8e5e5b1..bb5ccff 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,8 +1,4 @@ # .editorconfig -# -# Copyright (c) 2015-2016 Charlike Mike Reagent, contributors. -# Released under the MIT license. -# root = true @@ -24,3 +20,8 @@ trim_trailing_whitespace = true [*.md] insert_final_newline = false trim_trailing_whitespace = false + +[*.py] +indent_size = 4 +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/.gitignore b/.gitignore index 8eccb7e..adc9d50 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,4 @@ # .gitignore -# -# Copyright (c) 2015-2016 Charlike Mike Reagent, contributors. -# Released under the MIT license. -# # Always-ignore dirs # # #################### diff --git a/.travis.yml b/.travis.yml index d9389a1..3b70520 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,9 +17,13 @@ before_script: - standard script: - - npm install istanbul-harmony + - npm install istanbul - node --harmony node_modules/.bin/istanbul cover test.js after_success: - npm install coveralls - - cat coverage/lcov.info | coveralls \ No newline at end of file + - cat coverage/lcov.info | coveralls + +matrix: + allow_failures: + - node_js: "0.10" \ No newline at end of file