Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaGerasymenko committed Jan 22, 2019
1 parent 0bcf723 commit 5a7aa7e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 1 addition & 5 deletions .bithoundrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,5 @@
"limit": 40000
}
},
"test": [
"tests/**",
"test/**",
"doc/**"
]
"test": ["tests/**", "test/**", "doc/**"]
}
8 changes: 7 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
"singleQuote": true,
"trailingComma": "es5"
"trailingComma": "es5",
"overrides": [
{
"files": [".bithoundrc", ".prettierrc"],
"options": { "parser": "json" }
}
]
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint",
"lint": "eslint . && prettier --debug-check \"**/*.js\" \"**/*.json\" \"**/*.md\" .eslintrc .prettierrc",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" .eslintrc .prettierrc"
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\""
},
"engines": {
"node": ">=6.0.0"
Expand All @@ -35,6 +35,6 @@
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^3.0.1",
"metaschema": "^0.0.3",
"prettier": "1.16.0"
"prettier": "1.16.x"
}
}

0 comments on commit 5a7aa7e

Please sign in to comment.