Skip to content

Commit d45e0f9

Browse files
committed
Bump csslint
This commit fixes the checkstyle-xml formatter to include an identifier attribute on all errors. File read errors were previously missed and caused a NoMethodError in the engine when an identifier attribute was used on these errors. The commit sha was also extracted to a variable in the Dockerfile and added as a full commit sha. This makes for easier editing (git log or the GitHub UI most often gives you full shas) and should keep the diff clearer that only the sha was changed.
1 parent 38ac19c commit d45e0f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ RUN apk --update add nodejs git ruby ruby-dev ruby-bundler less ruby-nokogiri bu
88
bundle install -j 4 && \
99
apk del build-base && rm -fr /usr/share/ri
1010

11-
RUN npm install -g codeclimate/csslint.git#43d315c2
11+
ENV CSSLINT_SHA=0e7aeadd02f5babca5152993374043f9f736a116
12+
RUN npm install -g codeclimate/csslint.git#$CSSLINT_COMMIT
1213

1314
RUN adduser -u 9000 -D app
1415
USER app

0 commit comments

Comments
 (0)