-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make code style consistent with the latest Fantomas settings
- Loading branch information
1 parent
feb7db8
commit ec3aa5b
Showing
287 changed files
with
17,186 additions
and
12,844 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
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
2 changes: 1 addition & 1 deletion
2
integrationtests/core-no-dependencies-hello-world/before/hello_world.fsx
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 +1 @@ | ||
printfn "Hello FAKE" | ||
printfn "Hello FAKE" |
7 changes: 3 additions & 4 deletions
7
integrationtests/core-reference-fake-core-targets/before/otherfile.fs
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,12 +1,11 @@ | ||
module OtherFile | ||
|
||
open Fake.Core | ||
|
||
[<System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)>] | ||
let createTargets () = | ||
|
||
Target.create "OtherFileTarget" (fun _ -> | ||
printfn "Doing Something." | ||
) | ||
Target.create "OtherFileTarget" (fun _ -> printfn "Doing Something.") | ||
|
||
// required because otherwise JIT is still inlining this :( | ||
printfn "test" | ||
printfn "test" |
6 changes: 2 additions & 4 deletions
6
integrationtests/core-reference-fake-core-targets/before/otherscript.fsx
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,6 +1,4 @@ | ||
open Fake.Core | ||
|
||
Target.initEnvironment() | ||
Target.create "OtherScriptTarget" (fun _ -> | ||
printfn "Doing Something." | ||
) | ||
Target.initEnvironment () | ||
Target.create "OtherScriptTarget" (fun _ -> printfn "Doing Something.") |
Oops, something went wrong.