Skip to content

Commit

Permalink
ignore border punctuation rule
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-stripe committed Dec 15, 2016
1 parent 82a84d0 commit 42e5a0f
Showing 1 changed file with 43 additions and 2 deletions.
45 changes: 43 additions & 2 deletions FauxPasConfig/main.fauxpas.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Generated from the Faux Pas GUI
{
// Xcode target to check (String)
"target": "StripeiOSStatic",
"target": "StripeiOS",
// Xcode build configuration to check (String)
"buildConfig": "Release",
// Rules to apply (Array of strings)
Expand All @@ -11,7 +11,7 @@
// Rule tags to apply (Array of strings)
"ruleTags": ["Localization","Recommended"],
// Rules to exclude (Array of strings)
"excludedRules": ["ConstructorReturnType","PrivateCategory"],
"excludedRules": ["ConstructorReturnType","PrivateCategory","TranslationPunctuation"],
// Prefixes of files to exclude (Array of strings)
//"fileExclusionPrefixes": [],
// Xcode groups to exclude (Array of strings)
Expand Down Expand Up @@ -162,6 +162,15 @@
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: Cyclomatic complexity
"CyclomaticComplexity": {
// Cyclomatic complexity number warning threshold (Positive
// integer)
//"warningThresholdCCN": 10
// Regexes for ignored file paths (Array of regular expression
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: Direction of ordered comparison operators
"OrderedComparisonOpDirection": {
// Regexes for ignored file paths (Array of regular expression
Expand Down Expand Up @@ -213,6 +222,12 @@
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: Erroneous view layout in XIB
"ViewLayoutInXIB": {
// Regexes for ignored file paths (Array of regular expression
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: Fixed-format NSDateFormatter not using invariant
// (POSIX) locale
"FixedFormatDateFormatter": {
Expand Down Expand Up @@ -629,6 +644,32 @@
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: Source file header comment format
"SourceFileHeaderComment": {
// Expect comments to start with the file name (Boolean)
//"expectCommentToStartWithFilename": true
// Require header comments in all source files (Boolean)
//"requireHeaderComments": false
// Regexes for ignored file paths (Array of regular expression
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: Spelling error
"Spelling": {
// Known words (Array of strings)
//"knownWords": []
// Check only public interfaces (Boolean)
//"checkOnlyPublicInterfaces": false
// Check variables and parameters (Boolean)
//"checkVariablesAndParameters": false
// Check C functions (Boolean)
//"checkCFunctions": false
// Minimum word length (Positive integer)
//"minWordLength": 5
// Regexes for ignored file paths (Array of regular expression
// strings)
//"ignoredFileRegexes": null
},
// Options for rule: String resource file is not UTF-8
"StringsFileEncoding": {
// Regexes for ignored file paths (Array of regular expression
Expand Down

0 comments on commit 42e5a0f

Please sign in to comment.