Skip to content

Commit

Permalink
Merge pull request #204 from Kentico/feat/docs-refactor
Browse files Browse the repository at this point in the history
Feature: Documentation refactor
  • Loading branch information
seangwright authored Jul 16, 2024
2 parents dff57da + d435b7e commit c06b19c
Show file tree
Hide file tree
Showing 16 changed files with 615 additions and 357 deletions.
425 changes: 346 additions & 79 deletions .editorconfig

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run dotnet format
run: dotnet format --exclude ./examples/** --verify-no-changes
# - name: Run dotnet format
# run: dotnet format --exclude ./examples/** --verify-no-changes

build_and_test:
name: Build and Test
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
dotnet test `
--configuration Release `
--no-build `
--no-restore
--no-restore
5 changes: 5 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"MD013": false,
"MD024": false,
"no-inline-html": false
}
11 changes: 11 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"recommendations": [
"ms-dotnettools.csdevkit",
"esbenp.prettier-vscode",
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig",
"adrianwilczynski.user-secrets",
"dotjoshjohnson.xml",
"tintoy.msbuild-project-tools"
]
}
62 changes: 62 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/obj": true,
"**/bin": true,
"**/*.csproj.user": true
},

"search.exclude": {
"**/*.code-search": true,
"**/CIRepository/**": true
},

"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},

"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
},

"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},

"[razor]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"[aspnetcorerazor]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"emmet.includeLanguages": {
"razor": "html"
},

"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},

"dotnet.defaultSolution": "Migration.Toolkit.sln",

"typescript.validate.enable": false,
"eslint.workingDirectories": [],

"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell"
},

"terminal.integrated.defaultProfile.osx": "pwsh"
}
46 changes: 0 additions & 46 deletions CODE_OF_CONDUCT.md

This file was deleted.

70 changes: 0 additions & 70 deletions CONTRIBUTING.md

This file was deleted.

1 change: 0 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile>-->
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
Loading

0 comments on commit c06b19c

Please sign in to comment.