mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
e1c51f3c0d
Allows to change behavior of `deno fmt` to use "ASI" setting for semicolons instead of always prefering them, this is done by "--options-semi=asi" flag or `"semi": "asi"` setting in the config file.
20 lines
267 B
Text
20 lines
267 B
Text
{
|
|
"fmt": {
|
|
"files": {
|
|
"include": [
|
|
"./subdir/"
|
|
],
|
|
"exclude": [
|
|
"./subdir/b.ts"
|
|
]
|
|
},
|
|
"options": {
|
|
"useTabs": true,
|
|
"lineWidth": 40,
|
|
"indentWidth": 8,
|
|
"singleQuote": true,
|
|
"proseWrap": "always",
|
|
"semiColons": "asi"
|
|
}
|
|
}
|
|
}
|