This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
351 additions
and
833 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
rules: | ||
indent: [2, 2] | ||
quotes: [2, "single"] | ||
linebreak-style: [2, "unix"] | ||
semi: [2, "always"] | ||
env: | ||
mocha: true | ||
node: true | ||
extends: "eslint:recommended" | ||
{ | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"node": true | ||
}, | ||
"rules": { | ||
"indent": [2, 2], | ||
"linebreak-style": [2, "unix"], | ||
"no-console": [0], | ||
"quotes": [2, "single"], | ||
"semi": [2, "always"], | ||
"space-before-blocks": [2, "always"], | ||
"space-before-function-paren": [2, { | ||
"anonymous": "always", | ||
"named": "never" | ||
}], | ||
"space-before-keywords": [2, "always"] | ||
}, | ||
"root": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
coverage/ | ||
node_modules/ | ||
npm-debug.log | ||
*.actual.css | ||
*.sublime-* | ||
.nyc_output | ||
coverage | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
- "iojs" | ||
- "stable" | ||
- "4" | ||
- "0.12" | ||
after_success: npm run coveralls |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Test against these versions of Node.js | ||
environment: | ||
matrix: | ||
- nodejs_version: '' # is latest stable | ||
- nodejs_version: 4 | ||
- nodejs_version: 0.12 | ||
|
||
# Install scripts (runs after repo cloning) | ||
install: | ||
- ps: Install-Product node $env:nodejs_version | ||
- set CI=true | ||
- set AVA_APPVEYOR=true | ||
- npm install | ||
|
||
# Post-install test scripts | ||
test_script: | ||
# Output useful info for debugging | ||
- node --version | ||
- npm --version | ||
# Run tests | ||
- npm test | ||
|
||
# Don't actually build | ||
build: off |
Oops, something went wrong.