123456789101112131415161718192021222324252627 |
- /*
- * @Author: wjc
- * @Date: 2023-05-07 12:04:34
- * @LastEditors: wjc
- * @LastEditTime: 2024-05-27 17:33:13
- * @Description:
- */
- module.exports = {
- printWidth: 100,
- tabWidth: 2,
- useTabs: false,
- semi: false,
- vueIndentScriptAndStyle: true,
- singleQuote: true,
- quoteProps: 'as-needed',
- bracketSpacing: true,
- trailingComma: 'es5',
- jsxBracketSameLine: false,
- jsxSingleQuote: false,
- arrowParens: 'always',
- insertPragma: false,
- requirePragma: false,
- proseWrap: 'never',
- htmlWhitespaceSensitivity: 'ignore',
- endOfLine: 'lf',
- rangeStart: 0,
- }
|