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 4891d9a commit 1edf3dfCopy full SHA for 1edf3df
.gitattributes
@@ -0,0 +1,15 @@
1
+# Ensure consistent line endings across all platforms
2
+* text=auto eol=lf
3
+
4
+# Force LF for source files
5
+*.ts text eol=lf
6
+*.js text eol=lf
7
+*.json text eol=lf
8
+*.md text eol=lf
9
+*.yml text eol=lf
10
+*.yaml text eol=lf
11
12
+# Binary files
13
+*.png binary
14
+*.jpg binary
15
+*.ico binary
.github/workflows/ci.yml
@@ -15,6 +15,9 @@ jobs:
node-version: [18.x, 20.x]
16
17
steps:
18
+ - name: Configure Git line endings
19
+ run: git config --global core.autocrlf false
20
21
- uses: actions/checkout@v4
22
23
- name: Setup Node.js ${{ matrix.node-version }}
0 commit comments