Skip to content

Commit

Permalink
run update
Browse files Browse the repository at this point in the history
  • Loading branch information
tunnckoCore committed May 1, 2016
1 parent 2f2dbca commit 4c5f360
Show file tree
Hide file tree
Showing 19 changed files with 222 additions and 673 deletions.
7 changes: 7 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
languages:
JavaScript: true
exclude_paths:
- "dist/**/*"
- "dist/*.js"
- "dist/**/*.js"
- "dist/**.js"
1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

33 changes: 13 additions & 20 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
# .editorconfig <https://github.com/tunnckoCore/dotfiles>
#
# Copyright (c) 2014-2015 Charlike Mike Reagent, contributors.
# Released under the MIT license.
#

root = true

[*]
indent_style = space
charset = utf-8
end_of_line = lf
insert_final_newline = false
trim_trailing_whitespace = false

[*.{js,php}]
indent_size = 2
indent_style = space

[*.js]
insert_final_newline = true
trim_trailing_whitespace = true

[*.{php,html}]
[*.php]
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.{json,cson,yml,yaml,html,md,jade,css,stylus}]
indent_size = 2

[Makefile]
indent_size = 2
indent_style = tab
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

[.*rc]
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
[*.py]
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
49 changes: 0 additions & 49 deletions .gitattributes

This file was deleted.

6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# .gitignore <https://github.com/tunnckoCore/dotfiles>
#
# Copyright (c) 2014-2015 Charlike Mike Reagent, contributors.
# Released under the MIT license.
#

# Always-ignore dirs #
# ####################
Expand All @@ -21,6 +17,7 @@ nbproject
cache
temp
tmp
parse-github-short-urls

# Packages #
# ##########
Expand Down Expand Up @@ -53,3 +50,4 @@ Desktop.ini
npm-debug.log
.directory
._*
lcov.info
116 changes: 0 additions & 116 deletions .jscsrc

This file was deleted.

23 changes: 0 additions & 23 deletions .jshintignore

This file was deleted.

37 changes: 0 additions & 37 deletions .jshintrc

This file was deleted.

30 changes: 23 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
sudo: false
language: "node_js"
sudo: false

node_js:
- "iojs"
- "0.10"
- "0.11"
- "0.12"
- "4"
- "5"

notifications:
email:
on_success: never
on_failure: never

before_script:
- npm install standard
- standard

script:
- npm install istanbul
- node --harmony node_modules/.bin/istanbul cover test.js

after_success:
- npm install coveralls
- cat coverage/lcov.info | coveralls

matrix:
allow_failures:
- node_js: "0.10"
fast_finish: true
script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
- node_js: "0.10"
Loading

0 comments on commit 4c5f360

Please sign in to comment.