set up eslint and prettier

This commit is contained in:
2026-02-12 20:54:14 +01:00
parent 759e336956
commit 316055652f
60 changed files with 12758 additions and 2724 deletions

View File

@@ -1 +1,14 @@
export { default } from "ultracite/prettier";
/** @type {import('prettier').Config} */
const config = {
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: false,
trailingComma: "es5",
bracketSpacing: true,
arrowParens: "always",
proseWrap: "never",
printWidth: 80,
};
export default config;