-
Notifications
You must be signed in to change notification settings - Fork 586
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
995f2a9
commit c8fe9aa
Showing
289 changed files
with
17,201 additions
and
12,868 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" |
Oops, something went wrong.