-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge from main, bump FCS to latest NuGet.org preview
- Loading branch information
Showing
83 changed files
with
7,275 additions
and
7,515 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 |
---|---|---|
@@ -1,36 +1,36 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"fake-cli": { | ||
"version": "5.23.0", | ||
"commands": [ | ||
"fake" | ||
] | ||
}, | ||
"paket": { | ||
"version": "7.2.1", | ||
"commands": [ | ||
"paket" | ||
] | ||
}, | ||
"octonav": { | ||
"version": "0.0.1", | ||
"commands": [ | ||
"octonav" | ||
] | ||
}, | ||
"dotnet-reportgenerator-globaltool": { | ||
"version": "5.0.2", | ||
"commands": [ | ||
"reportgenerator" | ||
] | ||
}, | ||
"fantomas": { | ||
"version": "6.1.0", | ||
"commands": [ | ||
"fantomas" | ||
] | ||
} | ||
} | ||
} | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"fake-cli": { | ||
"version": "5.23.0", | ||
"commands": [ | ||
"fake" | ||
] | ||
}, | ||
"paket": { | ||
"version": "7.2.1", | ||
"commands": [ | ||
"paket" | ||
] | ||
}, | ||
"octonav": { | ||
"version": "0.0.1", | ||
"commands": [ | ||
"octonav" | ||
] | ||
}, | ||
"dotnet-reportgenerator-globaltool": { | ||
"version": "5.0.2", | ||
"commands": [ | ||
"reportgenerator" | ||
] | ||
}, | ||
"fantomas": { | ||
"version": "6.2.0", | ||
"commands": [ | ||
"fantomas" | ||
] | ||
} | ||
} | ||
} |
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,96 @@ | ||
name: 🐛 Bug report | ||
description: Report broken functionality. | ||
labels: [bug] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
- Avoid generic or vague titles such as "Something's not working" or "A couple of problems" — be as descriptive as possible. | ||
- Keep your issue focused on one single problem. If you have multiple bug reports, please create a separate issue for each of them. | ||
- Issues should represent **complete and actionable** work items. If you are unsure about something or have a question, please start a [discussion](https://github.com/fsharp/FsAutoComplete/discussions/new/choose) instead. | ||
- Remember that **FsAutocomplete** is an open-source project funded by the community contributions and free time. | ||
___ | ||
- type: input | ||
attributes: | ||
label: Version | ||
description: | | ||
Which version of the package does this bug affect? Make sure you're not using an outdated version. | ||
- If you are using VSCode, the version of Ionide can be used. You can can find this by going to `View -> Extensions -> Ionide for F#`. It will be displayed next to the name at the top. | ||
- If you are using the tool directly, you can find the version by running `dotnet fsautocomplete --version` in your terminal. | ||
placeholder: v1.0.0 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Dotnet Info | ||
description: What is the output of `dotnet --info`? | ||
placeholder: "Paste output here" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: > | ||
Minimum steps required to reproduce the bug, including prerequisites, code snippets, or other relevant items. | ||
The information provided in this field must be readily actionable, meaning that anyone should be able to reproduce the bug by following these steps. | ||
If the reproduction steps are too complex to fit in this field, please provide a link to a repository instead. | ||
⚠️ If you don't provide actionable reproduction steps, your issue won't be investigated. ⚠️ | ||
placeholder: | | ||
- Step 1 | ||
- Step 2 | ||
- Step 3 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: Clear and thorough explanation of the bug, including any additional information you may find relevant. | ||
placeholder: | | ||
- Expected behavior: ... | ||
- Actual behavior: ... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: > | ||
Please add any logs from your LSP client or server that you think might be relevant. | ||
Be sure to look through logs and obfuscate anything you don't want to share. | ||
* For VSCode: | ||
* Enable `FSharp.verboseLogging` and set `FSharp.trace.server` to a higher level | ||
* Then copy output from | ||
* `View -> Output -> Fsharp` | ||
* `View -> Output -> Ionide` | ||
* Any others that you think might be relevant | ||
placeholder: | | ||
- [21:11:05 DEBUG] [LanguageService] FSAC (NETCORE): ... | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Checklist | ||
description: Quick list of checks to ensure that everything is in order. | ||
options: | ||
- label: I have looked through existing issues to make sure that this bug has not been reported before | ||
required: true | ||
- label: I have provided a descriptive title for this issue | ||
required: true | ||
- label: I have made sure that that this bug is reproducible on the latest version of the package | ||
required: true | ||
- label: I have provided all the information needed to reproduce this bug as efficiently as possible | ||
required: true | ||
- label: I or my company would be willing to contribute this fix | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
If you are struggling to provide actionable reproduction steps, or if something else is preventing you from creating a complete bug report, please start a [discussion](https://github.com/fsharp/FsAutoComplete/discussions/new/choose) instead. |
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,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 🗨 Discussions | ||
url: https://github.com/fsharp/FsAutoComplete/discussions/new/choose | ||
about: Ask and answer questions. | ||
- name: 💬 Discord server | ||
url: https://discord.gg/R6n7c54 | ||
about: Chat with the community. |
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,34 @@ | ||
name: ✨ Feature request | ||
description: Request a new feature. | ||
labels: [enhancement] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
- Avoid generic or vague titles such as "Something's not working" or "A couple of problems" — be as descriptive as possible. | ||
- Keep your issue focused on one single problem. If you have multiple feature requests, please create a separate issue for each of them. | ||
- Issues should represent **complete and actionable** work items. If you are unsure about something or have a question, please start a [discussion](https://github.com/fsharp/FsAutoComplete/discussions/new/choose) instead. | ||
- Remember that **FsAutocomplete** is an open-source project funded by the community contributions and free time. | ||
___ | ||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: Clear and thorough explanation of the feature you have in mind. | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Checklist | ||
description: Quick list of checks to ensure that everything is in order. | ||
options: | ||
- label: I have looked through existing issues to make sure that this feature has not been requested before | ||
required: true | ||
- label: I have provided a descriptive title for this issue | ||
required: true | ||
- label: I am aware that even valid feature requests may be rejected if they do not align with the project's goals | ||
required: true | ||
- label: I or my company would be willing to contribute this feature | ||
required: false |
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
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
Oops, something went wrong.