Skip to content

Commit 8e37178

Browse files
committed
style: fix lint
1 parent 8aeb8cb commit 8e37178

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@
99
"[json]": {
1010
"editor.defaultFormatter": "dprint.dprint"
1111
},
12+
"[md]": {
13+
"editor.defaultFormatter": "dprint.dprint"
14+
},
1215
"dprint.path": "./node_modules/dprint/bin.js"
1316
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const enum MyEnum {
1212
B,
1313
C,
1414
D = 10,
15-
E = C * 200
15+
E = C * 200,
1616
}
1717
```
1818

dprint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"includes": ["**/*.{ts,tsx,js,jsx,cjs,mjs,json,md}"],
1313
"excludes": [
1414
"**/node_modules",
15-
"**/*-lock.json"
15+
"**/*-lock.json",
16+
"dist"
1617
],
1718
"plugins": [
1819
"https://plugins.dprint.dev/typescript-0.62.2.wasm",

0 commit comments

Comments
 (0)