We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e769d39 commit 458577bCopy full SHA for 458577b
3 files changed
.github/workflows/vale.yml
@@ -0,0 +1,23 @@
1
+name: Spelling & Styles
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - '**.md'
9
+ pull_request:
10
11
12
13
+jobs:
14
+ vale:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
20
+ - name: Vale Linting
21
+ uses: errata-ai/vale-action@reviewdog
22
+ with:
23
+ files: '["product/*.md"]'
.gitignore
@@ -4,4 +4,5 @@ scripts/node_modules
scripts/learningpath
scripts/newsite
scripts/.env
-.vs
+.vs
+.github/vale/*
.vale.ini
@@ -0,0 +1,7 @@
+StylesPath = .github/vale
+MinAlertLevel = suggestion
+Packages = https://github.com/InnerSourceCommons/isc-styles/releases/latest/download/ISC.zip
+[*]
+BasedOnStyles = ISC
0 commit comments