File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 8
8
- Add [ markdown-link-check] ( https://github.com/tcort/markdown-link-check ) tool to check if links in markdown file is available;
9
9
- Add [ gometalinter] ( https://github.com/alecthomas/gometalinter ) to validate golang code;
10
10
- Add [ go-swagger] ( https://github.com/go-swagger/go-swagger ) to validate swagger yml for API;
11
+ - Add [ yamllint] ( https://github.com/adrienverge/yamllint ) to validate yaml file;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
12
12
13
13
# shellcheck is included in this installation command.
14
14
RUN apt-get update \
15
- && apt-get install -y rubygems git curl wget shellcheck nodejs make gcc\
15
+ && apt-get install -y rubygems git curl wget shellcheck nodejs make gcc python-pip \
16
16
&& gem install rake \
17
17
&& gem install bundler \
18
18
&& apt-get clean
@@ -51,3 +51,6 @@ RUN chmod +x /usr/local/bin/swagger
51
51
52
52
# install misspell
53
53
RUN curl -L https://git.io/misspell | bash
54
+
55
+ # install yamllint
56
+ RUN pip install --user yamllint && mv /root/.local/bin/yamllint /usr/bin
You can’t perform that action at this time.
0 commit comments