-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f73de1
commit 7df56cf
Showing
25 changed files
with
835 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
module_name: MIDISynth | ||
author_name: Gene De Lisa | ||
module: MIDISynth | ||
author: Gene De Lisa | ||
author_url: http://rockhoppertech.com/blog/ | ||
github_url: http://github.com/genedelisa/MIDISynth | ||
copyright: "2016 © Gene De Lisa. See LICENSE for more details. [Rockhopper Technologies](http://rockhoppertech.com/)" | ||
min_acl: private | ||
#min_acl: public | ||
clean: true | ||
copyright: "2016 © Gene De Lisa. See LICENSE for more details. [Rockhopper Technologies](http://rockhoppertech.com/)" | ||
readme_path: ./README.md | ||
readme: ./README.md | ||
output: docs/swiftDocs | ||
swift_version: 3.0 | ||
xcodebuild-arguments: -scheme,MIDISynth | ||
sdk: iphone | ||
|
||
# swift_version: 4.0 | ||
# xcodebuild-arguments: -scheme,MIDISynth | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
included: | ||
- MIDISynth | ||
|
||
excluded: # paths to ignore during linting. Takes precedence over `included`. | ||
- .build | ||
- Carthage | ||
- Pods | ||
|
||
disabled_rules: # rule identifiers to exclude from running | ||
- todo | ||
- identifier_name | ||
- nesting | ||
- function_parameter_count | ||
- trailing_whitespace | ||
- vertical_whitespace | ||
- closure_parameter_position | ||
- cyclomatic_complexity | ||
|
||
opt_in_rules: # some rules are only opt-in | ||
- control_statement | ||
- empty_count | ||
# - trailing_newline | ||
- colon | ||
- comma | ||
# - cyclomatic_complexity | ||
# Find all the available rules by running: | ||
# swiftlint rules | ||
|
||
identifier_name: | ||
min_length: 1 | ||
|
||
line_length: 510 | ||
|
||
type_body_length: | ||
- 300 # warning | ||
- 400 # error | ||
|
||
# or they can set both explicitly | ||
file_length: | ||
warning: 600 | ||
error: 1200 | ||
|
||
large_tuple: # warn user when using 3 values in tuple, give error if there are 4 | ||
- 3 | ||
- 4 | ||
|
||
# naming rules can set warnings/errors for min_length and max_length | ||
# additionally they can set excluded names | ||
type_name: | ||
min_length: 4 # only warning | ||
max_length: # warning and error | ||
warning: 30 | ||
error: 35 | ||
excluded: iPhone # excluded via string | ||
|
||
cyclomatic_complexity: | ||
warning: 5 | ||
error: 7 | ||
|
||
reporter: "xcode" # reporter type (xcode, json, csv, checkstyle, junit, html, emoji) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.