can you stop prettier from line wrapping html

Solutions on MaxInterview for can you stop prettier from line wrapping html by the best coders in the world

showing results for - "can you stop prettier from line wrapping html"
Jacobo
20 Mar 2017
1    "prettier":{
2        "arrowParens": "avoid",
3        "bracketSpacing": true,
4        "htmlWhitespaceSensitivity": "css",
5        "insertPragma": false,
6        "jsxBracketSameLine": false,
7        "jsxSingleQuote": false,
8        "printWidth": 140,
9        "proseWrap": "preserve",
10        "quoteProps": "as-needed",
11        "requirePragma": false,
12        "semi": true,
13        "singleQuote": false,
14        "tabWidth": 4,
15        "trailingComma": "none",
16        "useTabs": false,
17        "vueIndentScriptAndStyle": false,
18        "rangeStart": 0
19      }
similar questions