Skip to content

Instantly share code, notes, and snippets.

@kjkorea
Last active October 6, 2021 06:25
Show Gist options
  • Select an option

  • Save kjkorea/b3795e5a214ed7d284f472f312a59efc to your computer and use it in GitHub Desktop.

Select an option

Save kjkorea/b3795e5a214ed7d284f472f312a59efc to your computer and use it in GitHub Desktop.
my basic setup for vuejs in vscode
root = true
[*]
end_of_line = lf
insert_final_newline = true
module.exports = {
singleQuote: true,
semi: false,
}
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"vue"
]
}
{
"include": ["./src/**/*"],
"exclude": ["node_modeuls", "dist"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment