Skip to content

Commit 86ff562

Browse files
committed
prettier
1 parent 404f674 commit 86ff562

File tree

7 files changed

+9
-17
lines changed

7 files changed

+9
-17
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
},
1818
"[javascriptreact]": {
1919
"editor.defaultFormatter": "esbenp.prettier-vscode"
20-
},
20+
}
2121
}

examples/next-app/app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ body {
2424
rgb(var(--background-end-rgb))
2525
)
2626
rgb(var(--background-start-rgb));
27-
height: 100vh;
27+
height: 100vh;
2828
}

examples/next-app/postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module.exports = {
33
tailwindcss: {},
44
autoprefixer: {},
55
},
6-
}
6+
};

examples/vite-app/tsconfig.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
"target": "ES2020",
44
"useDefineForClassFields": true,
55
"module": "ESNext",
6-
"lib": [
7-
"ES2020",
8-
"DOM",
9-
"DOM.Iterable"
10-
],
6+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
117
"skipLibCheck": true,
128
/* Bundler mode */
139
"moduleResolution": "bundler",
@@ -21,7 +17,5 @@
2117
"noUnusedParameters": true,
2218
"noFallthroughCasesInSwitch": true
2319
},
24-
"include": [
25-
"src"
26-
]
20+
"include": ["src"]
2721
}

packages/embed/tsconfig.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
"compilerOptions": {
55
"baseUrl": ".",
66
"paths": {
7-
"@/*": [
8-
"src/*"
9-
],
10-
},
7+
"@/*": ["src/*"]
8+
}
119
}
1210
}

tools/eslint-config/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "@humeai/typescript-config/base.json"
2+
"extends": "@humeai/typescript-config/base.json"
33
}

tools/typescript-config/react-library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"display": "React Library",
44
"extends": "./base.json",
55
"compilerOptions": {
6-
"jsx": "react-jsx",
6+
"jsx": "react-jsx"
77
}
88
}

0 commit comments

Comments
 (0)