Skip to content

Commit fb208f0

Browse files
authored
Specify config files (#139)
1 parent 8b7e5b4 commit fb208f0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@
3737
"build:watch": "tsc --build --watch",
3838
"clean": "rm -rf .nyc_output dist node_modules",
3939
"clean:dist": "rm -rf dist",
40-
"format": "prettier --write .",
41-
"format:check": "prettier --check .",
42-
"lint": "eslint .",
43-
"lint:fix": "eslint . --fix",
40+
"format": "prettier --config .prettierrc.json --ignore-path .prettierignore --write .",
41+
"format:check": "prettier --config .prettierrc.json --ignore-path .prettierignore --check .",
42+
"lint": "eslint --config .eslintrc.json --ignore-path .eslintignore .",
43+
"lint:fix": "eslint --config .eslintrc.json --ignore-path .eslintignore . --fix",
4444
"prepare": "npm run build",
4545
"run": "truffle run syntest-solidity",
46-
"test": "mocha",
47-
"test:coverage": "nyc mocha",
48-
"test:watch": "mocha --watch"
46+
"test": "mocha --config .mocharc.json",
47+
"test:coverage": "nyc mocha --config .mocharc.json",
48+
"test:watch": "mocha --config .mocharc.json --watch"
4949
},
5050
"dependencies": {
5151
"@solidity-parser/parser": "0.14.5",

0 commit comments

Comments
 (0)