diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 7ddc3f366a135..c3f61e7104125 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -93,8 +93,9 @@ jobs: - run: go install gotest.tools/gotestsum@latest - # Windows is not happy with backslashed commands. - - run: gotestsum --jsonfile="gotests.json" --packages="./..." -- -covermode=atomic -coverprofile="gotests.coverage" + - run: + gotestsum --jsonfile="gotests.json" --packages="./..." -- + -covermode=atomic -coverprofile="gotests.coverage" - uses: codecov/codecov-action@v2 with: diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000000000..8d35cecf3c13a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,14 @@ +{ + "printWidth": 120, + "semi": false, + "trailingComma": "all", + "overrides": [ + { + "files": ["./README.md", "**/*.yaml", "**/*.yml"], + "options": { + "printWidth": 80, + "proseWrap": "always" + } + } + ] +} \ No newline at end of file