20 lines
578 B
YAML
20 lines
578 B
YAML
disabled_rules:
|
|
- identifier_name
|
|
- trailing_comma
|
|
- todo
|
|
- type_body_length
|
|
- cyclomatic_complexity
|
|
- function_body_length
|
|
opt_in_rules: # some rules are turned off by default, so you need to opt-in
|
|
- empty_count # Find all the available rules by running: `swiftlint rules`
|
|
|
|
excluded: # paths to ignore during linting. Takes precedence over `included`.
|
|
- Pods
|
|
|
|
# Adjust rule numbers
|
|
line_length: 160
|
|
file_length: 500
|
|
|
|
# reporter type (xcode, json, csv, checkstyle, codeclimate, junit, html, emoji, sonarqube, markdown, github-actions-logging)
|
|
reporter: "xcode"
|