Skip to content

Instantly share code, notes, and snippets.

@stellimatt
Created September 26, 2016 22:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stellimatt/09135fa7ee09106a84db23f628e93110 to your computer and use it in GitHub Desktop.
Save stellimatt/09135fa7ee09106a84db23f628e93110 to your computer and use it in GitHub Desktop.
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