diff --git a/.autocorrectrc b/.autocorrectrc new file mode 100644 index 0000000..d41e4ae --- /dev/null +++ b/.autocorrectrc @@ -0,0 +1,2 @@ +rules: + no-space-fullwidth-quote: 0 diff --git a/.github/workflows/autocorrect.yml b/.github/workflows/autocorrect.yml new file mode 100644 index 0000000..f22be00 --- /dev/null +++ b/.github/workflows/autocorrect.yml @@ -0,0 +1,14 @@ +name: AutoCorrect +on: [push, pull_request] +jobs: + autocorrect: + name: AutoCorrect Lint + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 1 + + - name: Lint + uses: huacnlee/autocorrect-action@v2.5.8