-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: create symbolic link to access .swiftlint.yml directly in .spm p…
…roject
- Loading branch information
1 parent
0a2fbbe
commit 2d5297d
Showing
1 changed file
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
disabled_rules: | ||
- type_body_length | ||
- trailing_whitespace | ||
- identifier_name | ||
- line_length | ||
- file_length | ||
opt_in_rules: | ||
- empty_count | ||
- empty_string | ||
excluded: | ||
- DerivedData | ||
#identifier_name: | ||
# min_length: 2 | ||
# max_length: 45 | ||
line_length: | ||
warning: 200 | ||
error: 400 | ||
ignores_function_declarations: true | ||
ignores_comments: true | ||
ignores_urls: true | ||
#function_body_length: | ||
# warning: 300 | ||
# error: 500 | ||
#function_parameter_count: | ||
# warning: 6 | ||
# error: 8 | ||
#type_body_length: | ||
# warning: 300 | ||
# error: 500 | ||
#file_length: | ||
# warning: 1000 | ||
# error: 1500 | ||
# ignore_comment_only_lines: true | ||
#cyclomatic_complexity: | ||
# warning: 15 | ||
# error: 25 | ||
#reporter: "xcode" |