Skip to content

Instantly share code, notes, and snippets.

# No results from tests or mocks files:
Workspace - None of the following conditions are met - Filename - matches regex
(.*(Spec|Test|Mock)s?\.)|(Mock).*
# Only search in swift files:
Workspace - All of the following conditions are met - File Extension - is Equal to
swift
@RomainBoulay
RomainBoulay / Breakpoints_v2.xcbkptlist
Created April 12, 2016 20:47 — forked from Ashton-W/Breakpoints_v2.xcbkptlist
My User Breakpoints_v2.xcbkptlist
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "2"
version = "2.0">
<Breakpoints>
<!-- All Exceptions -->
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.ExceptionBreakpoint">
<BreakpointContent
@RomainBoulay
RomainBoulay / gist:8135ab417989c7ec03ba
Created February 23, 2015 15:54
Complexity script - XCode iOS - Build Phases
find "${SRCROOT}" \( -name "*.h" -or -name "*.m" \) -print0 | xargs -0 wc -l | awk '$1 > 400 && $2 != "total" { print $2 ":1: warning: File has more than 400 lines, consider refactoring." }'