We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226a07a commit 8a7f76eCopy full SHA for 8a7f76e
.github/workflows/integration.yaml
@@ -0,0 +1,11 @@
1
+name: 🔄 Integration
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ linelint:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: fernandrone/linelint@0.0.6
.linelint.yml
@@ -0,0 +1,18 @@
+# 'true' will fix files
+autofix: false
+# list of paths to ignore, uses gitignore syntaxes (executes before any rule)
+ignore:
+ - "*.md"
+rules:
+ # checks if file ends in a newline character
+ end-of-file:
+ # set to true to enable this rule
12
+ enable: true
13
14
+ # set to true to disable autofix (if enabled globally)
15
+ disable-autofix: false
16
17
+ # if true also checks if file ends in a single newline character
18
+ single-new-line: false
0 commit comments