Skip to content

Commit

Permalink
fix stickler config file
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Carlson committed Jul 4, 2018
1 parent 5063ac2 commit 12e3fcc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions .stickler.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
linters:
shellcheck:
shell: bash
shellcheck:
shell: bash
eslint:
config: './.eslintrc.js'

files:
ignore:
- 'bower_components/*'
- 'node_modules/*'
ignore:
- 'node_modules/*'
- 'test-api/*'
- 'docs/*'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"scripts": {
"build": "rm -rf dist && babel src --no-comments --out-dir dist",
"watch": "rm -rf dist && babel src --watch --source-maps true --out-dir dist",
"test": "npm run lint && bin/test --no-oracle",
"test": "bin/test --no-oracle",
"testsqlite3": "NODE_ENV=test ava test/*.js",
"testpg": "NODE_ENV=test DB=PG ava test/*.js",
"testpg-paging": "NODE_ENV=test DB=PG PAGINATE=keyset ava test/pagination/keyset-paging.js && NODE_ENV=test DB=PG PAGINATE=offset ava test/pagination/offset-paging.js",
Expand Down

0 comments on commit 12e3fcc

Please sign in to comment.