Skip to content

Commit

Permalink
fix with lint
Browse files Browse the repository at this point in the history
  • Loading branch information
417-72KI committed Jul 2, 2024
1 parent eeb4c5c commit 47f4b88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
included:
- Sources
- Plugins
excluded:
- Demo
- DemoWithPackage
Expand All @@ -23,6 +24,7 @@ disabled_rules:
- indentation_width # https://github.com/realm/SwiftLint/issues/3046
- let_var_whitespace # https://github.com/realm/SwiftLint/issues/2980
- missing_docs
- multiline_arguments_brackets
- no_extension_access_modifier
- no_grouping_extension
- one_declaration_per_file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ struct BuildConfigSwiftGenerate: BuildToolPlugin {
arguments: [
"-o",
generatedFileContainerPath.string,
buildConfigDirectoryPath.string
buildConfigDirectoryPath.string,
],
outputFiles: [generatedFileContainerPath.appending(generatedFileName)]
)
),
]
}
}
Expand Down Expand Up @@ -76,10 +76,10 @@ extension BuildConfigSwiftGenerate: XcodeBuildToolPlugin {
arguments: [
"-o",
generatedFileContainerPath.string,
buildConfigDirectoryPath.string
buildConfigDirectoryPath.string,
],
outputFiles: [generatedFileContainerPath.appending(generatedFileName)]
)
),
]
}
}
Expand Down

0 comments on commit 47f4b88

Please sign in to comment.