Skip to content

Commit

Permalink
Scaffold: Normalize repository
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed May 14, 2018
1 parent 6094472 commit 3dbeeb0
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 38 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@phated/iceddev/es5"
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ node_modules

# Users Environment Variables
.lock-wscript

# Garbage files
.DS_Store
25 changes: 0 additions & 25 deletions .jshintrc

This file was deleted.

8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
script:
- npm test
- npm run lint
before_install:
- 'npm install -g npm' # update npm before install for scopes
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,26 @@
},
"main": "index.js",
"files": [
"index.js",
"LICENSE"
"LICENSE",
"index.js"
],
"scripts": {
"test": "lab -cv --ignore store@sparkles",
"lint": "jshint test index.js --reporter node_modules/jshint-stylish/stylish.js --exclude node_modules"
"test": "lab -cvL --ignore store@sparkles"
},
"dependencies": {},
"devDependencies": {
"code": "^1.2.1",
"jshint": "^2.5.10",
"jshint-stylish": "^1.0.0",
"lab": "^5.1.0"
"@phated/eslint-config-iceddev": "^0.2.1",
"code": "^1.5.0",
"eslint": "^1.3.1",
"eslint-plugin-mocha": "^0.5.1",
"eslint-plugin-react": "^3.3.1",
"lab": "^5.16.0"
},
"keywords": [
"global",
"ee",
"events",
"emitter",
"events",
"global",
"namespaced"
]
}

0 comments on commit 3dbeeb0

Please sign in to comment.