Skip to content

Instantly share code, notes, and snippets.

View jwatney's full-sized avatar

Jonathon Watney jwatney

  • Victoria, BC, Canada
View GitHub Profile
@jwatney
jwatney / .eslintrc.js
Created March 26, 2023 02:47 — forked from onlime/.eslintrc.js
ESLint/Prettier config for Vue 3 in VS Code
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
'prettier'