Skip to content

Commit

Permalink
Limit code-width in docs to prevent horizontal scrolling (#1447)
Browse files Browse the repository at this point in the history
The prettier-config in `docs/` is required for the prettier-config in
`docs/docs/` to work.
  • Loading branch information
jamesricky authored Nov 28, 2023
1 parent 1a170b9 commit 81d4d62
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 150,
"tabWidth": 4,
"trailingComma": "all",
"semi": true
}
6 changes: 6 additions & 0 deletions docs/docs/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"tabWidth": 4,
"trailingComma": "all",
"semi": true
}

0 comments on commit 81d4d62

Please sign in to comment.