mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 09:01:39 -05:00
Prevent prettier from adding line breaks to excmds
This commit is contained in:
parent
ebde6d63e4
commit
e9588cde20
1 changed files with 10 additions and 1 deletions
11
.prettierrc
11
.prettierrc
|
@ -2,4 +2,13 @@ tabWidth: 4
|
|||
useTabs: false
|
||||
semi: false
|
||||
singleQuote: false
|
||||
arrowParens: avoid
|
||||
arrowParens: "avoid"
|
||||
trailingComma: "all"
|
||||
proseWrap: "never"
|
||||
|
||||
# The python script which parses excmds requires that function signatures are on one line.
|
||||
# Hopefully, no-one will write a function signature more than 10,000 characters long.
|
||||
overrides:
|
||||
- files: "excmds.ts"
|
||||
options:
|
||||
printWidth: 10000
|
||||
|
|
Loading…
Add table
Reference in a new issue