1
0
Fork 0

[misc] Formatting

This commit is contained in:
Lucien Cartier-Tilet 2023-03-04 23:04:03 +01:00
parent 1f0e3977a7
commit a83ca29b4f
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,6 @@
;;; Directory Local Variables -*- no-byte-compile: t -*-
;;; For more information see (info "(emacs) Directory Variables")
((typescript-mode . ((typescript-indent-level . 2))))
((typescript-mode . ((prettier-js-args . ("--single-quote" "--jsx-single-quote"))
(typescript-indent-level . 2)))
(scss-mode . ((prettier-js-args . ("--single-quote" "--jsx-single-quote")))))

View File

@ -2,10 +2,10 @@ import { defineClientConfig } from '@vuepress/client';
import ImgFigure from './components/ImgFigure.vue';
export default defineClientConfig({
enhance({app}) {
enhance({ app }) {
app.component('ImgFigure', ImgFigure);
},
setup() {},
layouts: {},
rootComponents: [],
})
});