初始化项目,添加 favicon.ico、screenshot.png 等静态资源文件,以及 Vue、TailwindCSS 等依赖项。配置了 Vite 和 PostCSS,并生成了基本的项目结构。
20 lines
446 B
JavaScript
20 lines
446 B
JavaScript
module.exports = {
|
|
// These settings are duplicated in .editorconfig:
|
|
tabWidth: 2, // indent_size = 2
|
|
useTabs: false, // indent_style = space
|
|
endOfLine: 'lf', // end_of_line = lf
|
|
semi: false, // default: true
|
|
singleQuote: true, // default: false
|
|
printWidth: 100, // default: 80
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
overrides: [
|
|
{
|
|
files: '*.js',
|
|
options: {
|
|
parser: 'flow',
|
|
},
|
|
},
|
|
],
|
|
}
|