File tree 2 files changed +39
-0
lines changed
Sources/swift-format/Subcommands
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 11
11
//===----------------------------------------------------------------------===//
12
12
13
13
import ArgumentParser
14
+ import Foundation
14
15
15
16
extension SwiftFormatCommand {
16
17
/// Formats one or more files containing Swift code.
@@ -36,9 +37,27 @@ extension SwiftFormatCommand {
36
37
var performanceMeasurementOptions : PerformanceMeasurementsOptions
37
38
38
39
func validate( ) throws {
40
+ #if os(Windows)
39
41
if inPlace && formatOptions. paths. isEmpty {
40
42
throw ValidationError ( " '--in-place' is only valid when formatting files " )
41
43
}
44
+ #else
45
+ let stdinIsPiped : Bool = {
46
+ let standardInput = FileHandle . standardInput
47
+ return isatty ( standardInput. fileDescriptor) == 0
48
+ } ( )
49
+ if !stdinIsPiped, formatOptions. paths. isEmpty {
50
+ throw ValidationError (
51
+ """
52
+ No input files specified. Please provide input in one of the following ways:
53
+ - Provide the path to a directory along with the '--recursive' option to format all Swift files within it.
54
+ - Provide the path to a specific Swift source code file.
55
+ - Or, pipe Swift code into the command (e.g., echo " let a = 1 " | swift-format).
56
+ Additionally, if you want to overwrite files in-place, use '--in-place'.
57
+ """
58
+ )
59
+ }
60
+ #endif
42
61
}
43
62
44
63
func run( ) throws {
Original file line number Diff line number Diff line change 11
11
//===----------------------------------------------------------------------===//
12
12
13
13
import ArgumentParser
14
+ import Foundation
14
15
15
16
extension SwiftFormatCommand {
16
17
/// Emits style diagnostics for one or more files containing Swift code.
@@ -32,6 +33,25 @@ extension SwiftFormatCommand {
32
33
@OptionGroup ( visibility: . hidden)
33
34
var performanceMeasurementOptions : PerformanceMeasurementsOptions
34
35
36
+ func validate( ) throws {
37
+ #if !os(Windows)
38
+ let stdinIsPiped : Bool = {
39
+ let standardInput = FileHandle . standardInput
40
+ return isatty ( standardInput. fileDescriptor) == 0
41
+ } ( )
42
+ if !stdinIsPiped, lintOptions. paths. isEmpty {
43
+ throw ValidationError (
44
+ """
45
+ No input files specified. Use one of the following:
46
+ - Provide the path to a directory along with the '--recursive' option to lint all Swift files within it.
47
+ - Provide the path to a specific Swift source code file.
48
+ - Or, pipe Swift code into the command (e.g., echo " let a = 1 " | swift-format lint).
49
+ """
50
+ )
51
+ }
52
+ #endif
53
+ }
54
+
35
55
func run( ) throws {
36
56
try performanceMeasurementOptions. printingInstructionCountIfRequested {
37
57
let frontend = LintFrontend ( lintFormatOptions: lintOptions)
You can’t perform that action at this time.
0 commit comments