Skip to content

Commit 65f0747

Browse files
committed
chore: fix lint endOfLine issue in local
1 parent c3cb46a commit 65f0747

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.prettierrc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
2+
"$schema": "https://json.schemastore.org/prettierrc",
23
"singleQuote": true,
34
"arrowParens": "avoid",
45
"printWidth": 120,
56
"bracketSpacing": true,
6-
"trailingComma": "none"
7-
}
7+
"trailingComma": "none",
8+
"endOfLine": "auto",
9+
"semi": true,
10+
"tabWidth": 2
11+
}

tsconfig.base.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"esModuleInterop": true,
2626
"noImplicitAny": false,
2727
"emitDecoratorMetadata": true,
28-
"experimentalDecorators": true
28+
"experimentalDecorators": true,
29+
"newLine": "lf"
2930
},
3031
"exclude": [
3132
"node_modules"

0 commit comments

Comments
 (0)