We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8126c58 commit a5b25acCopy full SHA for a5b25ac
.eslintrc.base.js
@@ -32,7 +32,6 @@ module.exports = {
32
},
33
rules: {
34
indent: "off",
35
- "linebreak-style": "off",
36
"no-dupe-keys": "error",
37
strict: "error",
38
"prefer-spread": "off",
.github/workflows/ci.yml
@@ -12,6 +12,11 @@ jobs:
12
os: [ubuntu-latest, windows-latest, macOS-latest]
13
14
steps:
15
+ - name: Set git to use LF
16
+ run: |
17
+ git config --global core.autocrlf false
18
+ git config --global core.eol lf
19
+
20
- uses: actions/checkout@v2
21
22
- name: Use Node.js ${{ matrix.node-version }}
0 commit comments