-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
6 changed files
with
71 additions
and
4 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,42 @@ | ||
# file options | ||
|
||
--symlinks ignore | ||
--disable hoistAwait | ||
--disable hoistTry | ||
--swiftversion 5.7 | ||
|
||
# format options | ||
|
||
--allman false | ||
--binarygrouping 4,8 | ||
--closingparen balanced | ||
--commas always | ||
--comments indent | ||
--decimalgrouping 3,6 | ||
--elseposition same-line | ||
--empty void | ||
--exponentcase lowercase | ||
--exponentgrouping disabled | ||
--extensionacl on-declarations | ||
--fractiongrouping disabled | ||
--header strip | ||
--hexgrouping 4,8 | ||
--hexliteralcase uppercase | ||
--ifdef indent | ||
--indent 4 | ||
--indentcase false | ||
--importgrouping testable-bottom | ||
--linebreaks lf | ||
--octalgrouping 4,8 | ||
--operatorfunc spaced | ||
--patternlet hoist | ||
--ranges spaced | ||
--self remove | ||
--semicolons inline | ||
--stripunusedargs always | ||
--trimwhitespace always | ||
--maxwidth 130 | ||
--wraparguments before-first | ||
--wrapcollections before-first | ||
--wrapconditions after-first | ||
--wrapparameters before-first |
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,24 @@ | ||
disabled_rules: | ||
- trailing_whitespace | ||
- trailing_comma | ||
- nesting | ||
- cyclomatic_complexity | ||
- file_length | ||
- todo | ||
- function_parameter_count | ||
- opening_brace | ||
- line_length | ||
identifier_name: | ||
min_length: | ||
error: 1 | ||
warning: 1 | ||
max_length: | ||
warning: 60 | ||
error: 80 | ||
inclusive_language: | ||
override_allowed_terms: | ||
- masterKey | ||
type_name: | ||
min_length: | ||
error: 1 | ||
warning: 1 |
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 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 @@ | ||
|
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,9 +1,9 @@ | ||
import ProjectDescription | ||
|
||
let config = Config( | ||
// Create an account with "tuist auth" and a project with "tuist project create" | ||
// Create an account with "tuist auth" and a project with "tuist project create" | ||
// then uncomment the section below and set the project full-handle. | ||
// * Read more: https://docs.tuist.io/guides/quick-start/gather-insights | ||
// | ||
fullHandle: "tuist/apple-bundle-size-analyzer" | ||
fullHandle: "tuist/apple-bundle-size-analyzer" | ||
) |