Skip to content

Commit 555efb4

Browse files
authored
Merge pull request #8 from codevor/develop
Added codeclimate
2 parents 5ba7d70 + 397000b commit 555efb4

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.codeclimate.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
engines:
2+
eslint:
3+
enabled: true
4+
channel: 'eslint-2'
5+
duplication:
6+
enabled: true
7+
config:
8+
languages:
9+
- javascript
10+
ratings:
11+
paths:
12+
- src/**
13+
exclude_paths:
14+
- tests/**/*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JS HTTP Status
22

3-
[![License][license-badge]][license-url] [![Coverage Status](https://coveralls.io/repos/github/codevor/js-http-status/badge.svg?branch=master)](https://coveralls.io/github/codevor/js-http-status?branch=master)
3+
[![License][license-badge]][license-url]
44

55
> A simple way to catch HTTP statuses with JavaScript.
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "NODE_ENV=dev webpack --progress --colors --watch",
99
"build": "NODE_ENV=production webpack",
1010
"lint": "eslint src tests",
11-
"test": "jest --coverage --expand",
11+
"test": "jest --coverage --expand -i",
1212
"test:watch": "jest --watch",
1313
"prepublish": "yarn lint && yarn test && yarn clean && yarn build",
1414
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"

0 commit comments

Comments
 (0)