Skip to content

Commit

Permalink
Change default formatters
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryba1986 committed Nov 1, 2023
1 parent 411a107 commit 4a35e29
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/dotnet_dev.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: .NET DEV

on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]
push:
branches: ["dev"]
pull_request:
branches: ["dev"]

jobs:
build:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"dotnet.defaultSolution": "Phoenix.sln",
"files.exclude": {
"**/bin": true,
Expand All @@ -9,5 +13,5 @@
"**/package-lock.json": true,
"**/yarn.lock": true,
"**/PhoenixClientDb*.db": true
},
}
}

0 comments on commit 4a35e29

Please sign in to comment.