Skip to content

Commit 0538d40

Browse files
chore(prettier): update config (#570)
This sets Prettier's `endOfLine` configuration to its default value: `"lf"`. It also updates the files that Prettier should ignore. See: https://prettier.io/docs/en/options.html#end-of-line
1 parent 6508d42 commit 0538d40

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

.prettierignore

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
node_modules
2-
dist
3-
build
4-
.docusaurus
51
.cache
2+
.parcel-cache
3+
build
4+
coverage
5+
dist
6+
node_modules

.prettierrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"proseWrap": "never",
33
"singleQuote": true,
4-
"trailingComma": "es5",
5-
"endOfLine":"auto"
4+
"trailingComma": "es5"
65
}

examples/react-renderer/tsconfig.json

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"esModuleInterop": true,
@@ -20,7 +16,5 @@
2016
"noEmit": true,
2117
"jsx": "react-jsx"
2218
},
23-
"include": [
24-
"src"
25-
]
19+
"include": ["src"]
2620
}

0 commit comments

Comments
 (0)