Skip to content

Commit

Permalink
Moved to semistandard and away from eslint/jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
benstoltz committed Oct 27, 2016
1 parent bfaf7d3 commit 3662ded
Show file tree
Hide file tree
Showing 9 changed files with 182 additions and 276 deletions.
99 changes: 0 additions & 99 deletions .jshintrc

This file was deleted.

1 change: 1 addition & 0 deletions .npmignore
Expand Up @@ -15,6 +15,7 @@ Icon

# Node
node_modules
*.log

# Coverage
coverage
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- tooling updated to favor npm scripts instead of grunt
- test pages and specs moved under test folder
- clean up of unused grunt tasks, dependencies, and misc files
- Semistandard for linting

## [0.6.1] - 2016-08-15
### Changed
Expand Down
16 changes: 13 additions & 3 deletions package.json
Expand Up @@ -10,7 +10,8 @@
"copy:deps": "copyfiles -f node_modules/d3/*.js* site/build/js & copyfiles -f node_modules/vega/*.js* site/build/js",
"copy:dist": "copyfiles -f src/charts/*.json dist/charts",
"copy:docs": "copyfiles -f src/charts/*.json site/build/js/charts & copyfiles -f dist/*.js* site/build/js",
"lint": "jshint src || true",
"lint": "semistandard --verbose | snazzy",
"lint:fix": "semistandard --fix",
"prebuild": "npm run lint && npm run clean:dist",
"build": "rollup -c profiles/dev.js & rollup -c profiles/prod.js & npm run copy:dist",
"pretest": "npm run build",
Expand Down Expand Up @@ -44,7 +45,6 @@
"browserify": "~8.0.2",
"chai": "^3.5.0",
"copyfiles": "^1.0.0",
"eslint": "^3.6.1",
"grunt": "^0.4.2",
"grunt-contrib-connect": "^0.4.1",
"grunt-contrib-copy": "^0.5.0",
Expand All @@ -54,7 +54,6 @@
"grunt-newer": "^0.7.0",
"grunt-sass": "^1.2.0",
"highlight.js": "^8.0.0",
"jshint": "^2.9.3",
"karma": "^1.3.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.0.0",
Expand All @@ -73,13 +72,24 @@
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"semistandard": "^9.1.0",
"sinon": "^1.11.1",
"sinon-chai": "^2.8.0",
"snazzy": "^5.0.0",
"underscore": "^1.7.0",
"watch": "^0.19.2"
},
"dependencies": {
"d3": "^3.5.6",
"vega": "^2.6.1"
},
"semistandard": {
"ignore": [
"gruntfile.js",
"karma.*.js",
"/profiles/",
"/site/",
"/test/"
]
}
}

0 comments on commit 3662ded

Please sign in to comment.