Prevent prettier from adding line breaks to excmds

This commit is contained in:
Oliver Blanthorn 2018-04-13 19:17:22 +01:00
parent ebde6d63e4
commit e9588cde20
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -2,4 +2,13 @@ tabWidth: 4
useTabs: false useTabs: false
semi: false semi: false
singleQuote: 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