Commit 9a564114 authored by Liam Horne's avatar Liam Horne

build: remove --format stylish

parent a194c38b
......@@ -8,7 +8,7 @@
"scripts": {
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config ./.prettierrc.json --write 'test/**/*.ts'",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"build:integration": "./scripts/build.sh",
"build:contracts": "hardhat compile",
"build:contracts:ovm": "hardhat compile --network optimism",
......
......@@ -14,9 +14,9 @@
"clean": "rimraf cache/ dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"hardhat.config.ts\" \"{src,exec,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"test": "hardhat test --show-stack-traces",
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"test": "hardhat test --show-stack-traces"
},
"keywords": [
"optimism",
......
......@@ -14,9 +14,9 @@
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write '{src,test}/**/*.ts'",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"test": "ts-mocha test/*.spec.ts",
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"lint:check": "eslint -c .eslintrc.js --ext .ts ."
},
"devDependencies": {
"@types/chai": "^4.2.18",
......
......@@ -15,9 +15,9 @@
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write '{src,test}/**/*.ts'",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"test": "ts-mocha test/**/*.spec.ts",
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"test": "ts-mocha test/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.2.17",
......
......@@ -14,7 +14,7 @@
"clean:db": "rimraf ./db",
"lint": "yarn run lint:fix && yarn run lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,exec,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"start": "ts-node ./src/services/run.ts",
"start:local": "ts-node ./src/services/run.ts | pino-pretty",
"test": "hardhat --config test/config/hardhat.config.ts test",
......
......@@ -13,7 +13,7 @@
"build": "tsc -p tsconfig.build.json",
"lint": "yarn run lint:fix && yarn run lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"pre-commit": "lint-staged"
},
"dependencies": {
......
......@@ -16,9 +16,9 @@
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,exec,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"test": "hardhat test --show-stack-traces",
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"test": "hardhat test --show-stack-traces"
},
"keywords": [
"optimism",
......
......@@ -13,9 +13,9 @@
"test": "hardhat test --show-stack-traces",
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config ./.prettierrc.json --write \"hardhat.config.ts\" \"{src,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .",
"clean": "rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo",
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"lint:check": "eslint -c .eslintrc.js --ext .ts .",
"clean": "rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo"
},
"peerDependencies": {
"@ethersproject/abi": "^5",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment