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

build: remove --format stylish

parent a194c38b
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"scripts": { "scripts": {
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config ./.prettierrc.json --write 'test/**/*.ts'", "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:integration": "./scripts/build.sh",
"build:contracts": "hardhat compile", "build:contracts": "hardhat compile",
"build:contracts:ovm": "hardhat compile --network optimism", "build:contracts:ovm": "hardhat compile --network optimism",
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
"clean": "rimraf cache/ dist/ ./tsconfig.build.tsbuildinfo", "clean": "rimraf cache/ dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"hardhat.config.ts\" \"{src,exec,test}/**/*.ts\"", "lint:fix": "prettier --config .prettierrc.json --write \"hardhat.config.ts\" \"{src,exec,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .", "pre-commit": "lint-staged",
"test": "hardhat test --show-stack-traces", "lint:check": "eslint -c .eslintrc.js --ext .ts .",
"pre-commit": "lint-staged" "test": "hardhat test --show-stack-traces"
}, },
"keywords": [ "keywords": [
"optimism", "optimism",
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo", "clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write '{src,test}/**/*.ts'", "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", "test": "ts-mocha test/*.spec.ts",
"pre-commit": "lint-staged" "pre-commit": "lint-staged",
"lint:check": "eslint -c .eslintrc.js --ext .ts ."
}, },
"devDependencies": { "devDependencies": {
"@types/chai": "^4.2.18", "@types/chai": "^4.2.18",
......
...@@ -15,9 +15,9 @@ ...@@ -15,9 +15,9 @@
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo", "clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write '{src,test}/**/*.ts'", "lint:fix": "prettier --config .prettierrc.json --write '{src,test}/**/*.ts'",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .", "pre-commit": "lint-staged",
"test": "ts-mocha test/**/*.spec.ts", "lint:check": "eslint -c .eslintrc.js --ext .ts .",
"pre-commit": "lint-staged" "test": "ts-mocha test/**/*.spec.ts"
}, },
"devDependencies": { "devDependencies": {
"@types/chai": "^4.2.17", "@types/chai": "^4.2.17",
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"clean:db": "rimraf ./db", "clean:db": "rimraf ./db",
"lint": "yarn run lint:fix && yarn run lint:check", "lint": "yarn run lint:fix && yarn run lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,exec,test}/**/*.ts\"", "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": "ts-node ./src/services/run.ts",
"start:local": "ts-node ./src/services/run.ts | pino-pretty", "start:local": "ts-node ./src/services/run.ts | pino-pretty",
"test": "hardhat --config test/config/hardhat.config.ts test", "test": "hardhat --config test/config/hardhat.config.ts test",
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"build": "tsc -p tsconfig.build.json", "build": "tsc -p tsconfig.build.json",
"lint": "yarn run lint:fix && yarn run lint:check", "lint": "yarn run lint:fix && yarn run lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,test}/**/*.ts\"", "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" "pre-commit": "lint-staged"
}, },
"dependencies": { "dependencies": {
......
...@@ -16,9 +16,9 @@ ...@@ -16,9 +16,9 @@
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo", "clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config .prettierrc.json --write \"{src,exec,test}/**/*.ts\"", "lint:fix": "prettier --config .prettierrc.json --write \"{src,exec,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .", "pre-commit": "lint-staged",
"test": "hardhat test --show-stack-traces", "lint:check": "eslint -c .eslintrc.js --ext .ts .",
"pre-commit": "lint-staged" "test": "hardhat test --show-stack-traces"
}, },
"keywords": [ "keywords": [
"optimism", "optimism",
......
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
"test": "hardhat test --show-stack-traces", "test": "hardhat test --show-stack-traces",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "prettier --config ./.prettierrc.json --write \"hardhat.config.ts\" \"{src,test}/**/*.ts\"", "lint:fix": "prettier --config ./.prettierrc.json --write \"hardhat.config.ts\" \"{src,test}/**/*.ts\"",
"lint:check": "eslint -c .eslintrc.js --ext .ts --format stylish .", "pre-commit": "lint-staged",
"clean": "rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo", "lint:check": "eslint -c .eslintrc.js --ext .ts .",
"pre-commit": "lint-staged" "clean": "rimraf ./artifacts ./cache ./dist ./tsconfig.build.tsbuildinfo"
}, },
"peerDependencies": { "peerDependencies": {
"@ethersproject/abi": "^5", "@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