From fa199dd4911011aa06623eb11cd7647d8b3d5b27 Mon Sep 17 00:00:00 2001 From: kyriediculous Date: Sat, 30 Mar 2024 19:18:29 +0100 Subject: [PATCH] chore: lint --- .github/workflows/ci.yml | 2 +- .prettierrc.yml | 2 +- package.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a1cab8..4479878 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,4 +76,4 @@ jobs: - name: "Add test summary" run: | echo "## Tests result" >> $GITHUB_STEP_SUMMARY - echo "✅ Passed" >> $GITHUB_STEP_SUMMARY \ No newline at end of file + echo "✅ Passed" >> $GITHUB_STEP_SUMMARY diff --git a/.prettierrc.yml b/.prettierrc.yml index 4508a08..a1ecdbb 100644 --- a/.prettierrc.yml +++ b/.prettierrc.yml @@ -4,4 +4,4 @@ proseWrap: "always" singleQuote: false tabWidth: 2 trailingComma: "all" -useTabs: false \ No newline at end of file +useTabs: false diff --git a/package.json b/package.json index 5a3b47b..611460c 100644 --- a/package.json +++ b/package.json @@ -13,9 +13,9 @@ "private": true, "scripts": { "clean": "rm -rf cache out", - "lint": "yarn lint:sol && yarn prettier:check", + "lint": "yarn lint:sol && yarn prettier:write", "lint:sol": "yarn solhint {src,test}/**/*.sol", "prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore", "prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore" } -} \ No newline at end of file +}