mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-23 17:50:22 +08:00
7b76945bff
* perf: 优化 build 时 vite 模式判断 * perf: 优化 TableAction, 仅在 action.tooltip 存在的情况下 才使用 Tooltip 组件 * docs: 仅在 action.tooltip 存在的情况下 才使用 Tooltip 组件 * fix: 在 window 上,拉取代码后 eslint 因 endOfLine 而保错问题 * docs: 修复在 window 上,拉取代码后 eslint 因 endOfLine 而保错问题
21 lines
442 B
JavaScript
21 lines
442 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
vueIndentScriptAndStyle: true,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
bracketSpacing: true,
|
|
trailingComma: 'es5',
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
arrowParens: 'always',
|
|
insertPragma: false,
|
|
requirePragma: false,
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
rangeStart: 0,
|
|
};
|