When I execute a Format Document command on a Vue Component.vue file VSCode replace all single quoted string with double quoted string.
Format Document
In my specific case
quote_type = single
add this inside .editorconfig
# EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = false insert_final_newline = false quote_type = single