Skip to content

Commit 0b34f92

Browse files
committed
replace short form to long form
1 parent 36c8e5b commit 0b34f92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Plugins/FormatPlugin/plugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ struct FormatPlugin {
1010
var swiftFormatArgs: [String] {
1111
["format"]
1212
targetDirectories
13-
["-r", "-p", "-i"]
13+
["--recursive", "--parallel", "--in-place"]
1414

1515
if let configurationFilePath = configurationFilePath {
1616
["--configuration", configurationFilePath]

Plugins/LintPlugin/plugin.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ struct LintPlugin {
1010
var swiftFormatArgs: [String] {
1111
["lint"]
1212
targetDirectories
13-
["-r", "-p", "-s"]
13+
["--recursive", "--parallel", "--strict"]
1414

1515
if let configurationFilePath = configurationFilePath {
1616
["--configuration", configurationFilePath]

0 commit comments

Comments
 (0)