Skip to content

Commit

Permalink
v3.0.20180112
Browse files Browse the repository at this point in the history
* Resolve conflict from upstream based on date version change (@bjornstar)
* Remove `this.content` to match upstream changes (@bjornstar)
* Added some very basic tests (@bjornstar)
* Added linting through eslint (@bjornstar)
* Start using travis-ci to verify basic functionality isn't breaking (@bjornstar)
  • Loading branch information
bjornstar committed Jul 10, 2018
1 parent 26a5900 commit e909b69
Show file tree
Hide file tree
Showing 10 changed files with 269 additions and 192 deletions.
30 changes: 30 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
"env": {
"amd": true,
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 5
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.eslintrc.js
.travis.yml
test
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language:
- node_js
node_js:
- "6"
- "8"
- "10"
jobs:
include:
- stage: lint
script: npm run lint

0 comments on commit e909b69

Please sign in to comment.