forked from opentiny/tiny-vue
23 lines
707 B
JavaScript
23 lines
707 B
JavaScript
|
/* eslint-env node */
|
||
|
|
||
|
/** @type {import('@volar-plugins/eslint')} */
|
||
|
// const volarEslintPlugin = require('@volar-plugins/eslint')
|
||
|
|
||
|
/** @type {import('@volar-plugins/prettier')} */
|
||
|
// const { volarPrettierPlugin } = require('@volar-plugins/prettier')
|
||
|
|
||
|
/** @type {import('@volar-plugins/prettyhtml')} */
|
||
|
// const prettyhtml = require('@volar-plugins/prettyhtml')
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [
|
||
|
// volarEslintPlugin(require('./linting/resolve-config.js')),
|
||
|
// volarPrettierPlugin({
|
||
|
// languages: ['html', 'css', 'scss', 'typescript', 'javascript'],
|
||
|
// html: { breakContentsFromTags: true },
|
||
|
// useVscodeIndentation: true,
|
||
|
// }),
|
||
|
// prettyhtml({ printWidth: 100 }),
|
||
|
],
|
||
|
}
|