Skip to content

Commit 62db5ac

Browse files
committed
Style: Use latest version of prettier
1 parent 9a3413f commit 62db5ac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/CODING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ brew install prettier
388388
To install [`prettier`][] using Node’s package manager [npm](https://www.npmjs.com) you can use the command below
389389

390390
```sh
391-
npm install --global prettier@1.18.2
391+
npm install --global prettier@1.19.1
392392
```
393393

394394
.

scripts/dev/reformat-markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cd "$SOURCE" || {
1616
PRETTIER="$(which prettier)"
1717

1818
if [ -z "${PRETTIER}" ]; then
19-
printf 2>&1 'Please install `prettier` (npm install --global prettier@1.18.2)\n'
19+
printf 2>&1 'Please install `prettier` (npm install --global prettier@1.19.1)\n'
2020
exit 1
2121
fi
2222

scripts/docker/debian/sid/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ RUN mkdir -p ${GTEST_ROOT} \
7676
&& rm gtest.tar.gz
7777

7878
# Prettier
79-
RUN npm install --global prettier@1.18.2
79+
RUN npm install --global prettier@1.19.1
8080

8181
# hyperfine
8282
ARG HYPERFINE_VERSION=1.5.0

0 commit comments

Comments
 (0)