feat(pkg): Add shared Prettier config

This commit is contained in:
T. R. Bernstein
2025-02-24 23:09:10 +01:00
parent be84ac379d
commit 85230a1b7c
3 changed files with 20 additions and 0 deletions

View File

@@ -39,3 +39,4 @@ authors = [
[packages] [packages]
typescript-config = { path = "packages/typescript-config" } typescript-config = { path = "packages/typescript-config" }
vitest-config = { path = "packages/vitest-config" } vitest-config = { path = "packages/vitest-config" }
prettier-config = { path = "packages/prettier-config" }

View File

@@ -0,0 +1,10 @@
// Documentation for this file: https://prettier.io/en/configuration.html
const config = {
printWidth: 110,
semi: false,
endOfLine: 'auto',
singleQuote: true,
trailingComma: 'none'
}
export default config

View File

@@ -0,0 +1,9 @@
{
"name": "@tabshift/prettier-config",
"description": "Shared Prettier config of Tabshift",
"version": "1.0.0",
"type": "module",
"exports": "./base.js",
"author": "T. R. Bernstein <ljspkgs01-project@tabshift.dev>",
"license": "EUPL-1.2"
}