Skip to content

Instantly share code, notes, and snippets.

View mattdanna's full-sized avatar

Matt Danna mattdanna

View GitHub Profile
global class PluginDemoProductSearchPlugin implements SBQQ.ProductSearchPlugin{
public String type1 {get; set;}
global PluginDemoProductSearchPlugin(){
System.debug('METHOD CALLED: customSearchFilter Constructor');
}
global String getAdditionalSearchFilters(SObject so, Map<String,Object> ma){
System.debug('METHOD CALLED: getAdditionalSearchFilters');
//System.debug('Sobject Passed: ' + so.getSObjectType().getDescribe().getName());
@mattdanna
mattdanna / CSScomb.sublime-settings
Created November 5, 2015 02:43
Sublime CSScomb Package Settings – User
{
// If plugin has trouble finding Node.js, replace this string with path
// to your `node` bin
"node-path" : ":/usr/local/bin",
// Full list of supported options and acceptable values can be found here:
// https://github.com/csscomb/csscomb.js/blob/master/doc/options.md
"config": {
// Whether to add a semicolon after the last value/mixin.
@mattdanna
mattdanna / .scss-lint.yml
Created November 5, 2015 02:42
SCSS Lint
# Linters documentation: https://github.com/brigade/scss-lint/blob/master/lib/scss_lint/linter/README.md
scss_files: "client/css/*.scss"
exclude: ['client/css/base/mixins/_meyer-reset.scss', 'client/css/base/mixins/_normalize.scss', 'client/css/base/mixins/_normalize-opentype.scss']
linters:
BangFormat:
enabled: true
space_before_bang: true
space_after_bang: false