Files
transmission/docker/code_style/Dockerfile
Charles Kerr be219ddee0 chore: add precommit hook for testing code style (#1448)
* chore: add precommit hook for testing code style

* chore: use prettier + eslint for js code
2020-09-13 21:41:32 -05:00

12 lines
175 B
Docker

FROM alpine
RUN apk add --no-cache \
bash \
git \
npm \
perl \
uncrustify \
&& npm install -g \
eslint \
prettier