Started working with vue.js recently and I can't figure out why my import statements always break to a new line on save:
import {
businessSignup
} from './businessSignup.module';
import {
user,
guest
} from './people.module';
I'd really prefer the following code style.
import { businessSignup } from './businessSignup.module';
import { user, guest } from './people.module';
I'm aware that there is babel-eslint, eslint, as well as my vscode editor, all suspect to play a role in this, however I'm not very experienced with linter configuration yet. Hope there is a quick solution to this. :-)