Created
September 26, 2016 22:51
-
-
Save stellimatt/09135fa7ee09106a84db23f628e93110 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Build | |
module Commit | |
class ExtendedStaticAnalysis < StaticAnalysis | |
def initialize(store:) | |
# execute base class logic first | |
super(store: store) | |
# execute custom logic | |
execute_jslint(working_directory: store.get(attrib_name: "params")[:working_directory]) | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment