Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for some (0.17 sec)

  1. .cm/plugins/filters/isEnabledAutomation/index.js

        // Check if always enabled, or enabled by comment
        if (automationActivations.includes('always')) {
            result = true;
        } else {
            result = Object.values(pr.comments).some(comment => {
                const checks = extractCheckNames(comment.content);
                if (checks.includes(automationName)) {
                    return true;
                }
            });
        }
    
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. .cm/plugins/filters/byCodeowner/ignore/index.js

            this._added = false
    
            makeArray(
                isString(pattern)
                    ? splitPattern(pattern)
                    : pattern
            ).forEach(this._addPattern, this)
    
            // Some rules have just added to the ignore,
            // making the behavior changed.
            if (this._added) {
                this._initCache()
            }
    
            return this
        }
    
        // legacy
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top