Skip to content

Commit aee403e

Browse files
committed
internal: Update prettier ignore rules.
1 parent 35b82de commit aee403e

6 files changed

Lines changed: 21 additions & 8 deletions

File tree

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ lib/
66
mjs/
77
node_modules/
88
CHANGELOG.md
9-
*.json
109
.yarn

lerna.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"ignoreChanges": [
88
"*.md"
99
],
10-
"noPrivate": true
10+
"private": false
1111
},
1212
"version": {
13-
"noPrivate": true
13+
"private": false
1414
}
1515
}
1616
}

packages/prettier-config/prettier.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,21 @@
1515
"useTabs": true,
1616
"overrides": [
1717
{
18-
"files": ["*.json", "*.yml", "*.yaml", "*.md", "*.mdx"],
18+
"files": [
19+
"*.json",
20+
"*.yml",
21+
"*.yaml",
22+
"*.md",
23+
"*.mdx"
24+
],
1925
"options": {
2026
"useTabs": false
2127
}
2228
},
2329
{
24-
"files": ["*.json"],
30+
"files": [
31+
"*.json"
32+
],
2533
"options": {
2634
"parser": "json-stringify"
2735
}

packages/tsconfig/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"experimentalDecorators": false,
99
"forceConsistentCasingInFileNames": true,
1010
"isolatedModules": true,
11-
"lib": ["esnext"],
11+
"lib": [
12+
"esnext"
13+
],
1214
"module": "esnext",
1315
"moduleResolution": "node",
1416
"noEmitOnError": true,

packages/tsconfig/tsconfig.react.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "./tsconfig.json",
44
"compilerOptions": {
5-
"lib": ["dom"],
5+
"lib": [
6+
"dom"
7+
],
68
"jsx": "react"
79
}
810
}

packages/tsconfig/tsconfig.solid.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"$schema": "https://json.schemastore.org/tsconfig",
33
"extends": "./tsconfig.json",
44
"compilerOptions": {
5-
"lib": ["dom"],
5+
"lib": [
6+
"dom"
7+
],
68
"jsx": "preserve",
79
"jsxImportSource": "solid-js"
810
}

0 commit comments

Comments
 (0)