Skip to content

Commit 28f84f8

Browse files
committed
chore: prepare
1 parent 7e10af8 commit 28f84f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2651
-1
lines changed

.csharpierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.xaml

.csharpierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"printWidth": 110,
3+
"useTabs": false,
4+
"tabWidth": 4,
5+
"preprocessorSymbolSets": [
6+
"",
7+
"DEBUG",
8+
"DEBUG,CODE_STYLE"
9+
]
10+
}

.editorconfig

Lines changed: 483 additions & 0 deletions
Large diffs are not rendered by default.

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [pomianowski]
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
title: "Bug title"
4+
labels: [bug]
5+
body:
6+
- type: textarea
7+
validations:
8+
required: true
9+
attributes:
10+
label: Describe the bug
11+
description: A clear and concise description of what the bug is
12+
- type: textarea
13+
validations:
14+
required: true
15+
attributes:
16+
label: To Reproduce
17+
description: Steps to reproduce the behavior
18+
- type: textarea
19+
validations:
20+
required: true
21+
attributes:
22+
label: Expected behavior
23+
description: A clear and concise description of what you expected to happen
24+
- type: textarea
25+
attributes:
26+
label: Screenshots
27+
description: If applicable, add screenshots to help explain your problem
28+
- type: textarea
29+
validations:
30+
required: true
31+
attributes:
32+
label: OS version
33+
description: Which OS versions did you see the issue on?
34+
- type: textarea
35+
validations:
36+
required: true
37+
attributes:
38+
label: .NET version
39+
description: Which .NET versions did you see the issue on?
40+
- type: textarea
41+
validations:
42+
required: true
43+
attributes:
44+
label: Fluent library NuGet version
45+
description: Which Fluent library NuGet versions did you see the issue on?
46+
- type: textarea
47+
attributes:
48+
label: Additional context
49+
description: Add any other context about the problem here

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Documentation
4+
url: https://fluent.lepo.co/documentation/
5+
about: Find out how Fluent Framework works.
6+
- name: Tutorial
7+
url: https://fluent.lepo.co/documentation/tutorial
8+
about: Having trouble with the basics? Check out the tutorial!
9+
- name: lepo.co contact
10+
url: https://lepo.co/contact
11+
about: Do you want to establish business contact? Let us know.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Feature request
2+
description: Suggest an idea for the Fluent Framework
3+
title: "Feature request title"
4+
labels: [enhancement]
5+
body:
6+
- type: textarea
7+
validations:
8+
required: true
9+
attributes:
10+
label: Is your feature request related to a problem? Please describe
11+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
- type: textarea
13+
validations:
14+
required: true
15+
attributes:
16+
label: Describe the solution you'd like
17+
description: A clear and concise description of what you want to happen
18+
- type: textarea
19+
attributes:
20+
label: Describe alternatives you've considered
21+
description: A clear and concise description of any alternative solutions or features you've considered
22+
- type: textarea
23+
attributes:
24+
label: Additional context
25+
description: Add any other context or screenshots about the feature request here

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
You are an AI coding agent helping build Fluent Framework, a modern collection of libraries for .NET applications.

.github/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
8+
updates:
9+
# Maintain dependencies for GitHub Actions
10+
- package-ecosystem: "github-actions"
11+
target-branch: "development"
12+
directory: "/"
13+
schedule:
14+
interval: "daily"
15+
labels:
16+
- "Actions"
17+
# Maintain dependencies for nuget
18+
- package-ecosystem: "nuget"
19+
target-branch: "development"
20+
directory: "src"
21+
schedule:
22+
interval: "daily"
23+
labels:
24+
- "NuGet"

.github/labeler.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
release:
2+
- base-branch: "main"
3+
4+
PR:
5+
- base-branch: ["main", "development"]
6+
7+
github_actions:
8+
- changed-files:
9+
- any-glob-to-any-file: ".github/workflows/**"
10+
11+
documentation:
12+
- changed-files:
13+
- any-glob-to-any-file: "docs/**"
14+
15+
dotnet:
16+
- changed-files:
17+
- any-glob-to-any-file: "**/*.cs"
18+
19+
update:
20+
- changed-files:
21+
- any-glob-to-any-file: "src/Directory.Build.props"
22+
23+
NuGet:
24+
- changed-files:
25+
- any-glob-to-any-file: "src/Directory.Packages.props"
26+
27+
dependencies:
28+
- changed-files:
29+
- any-glob-to-any-file:
30+
["src/Directory.Packages.props", "branding/package.json"]
31+
32+
http-client:
33+
- changed-files:
34+
- any-glob-to-any-file: "src/Fluent.HttpClient/**"

0 commit comments

Comments
 (0)