12345678910111213141516171819202122232425262728 |
- /*
- * @Author: wjc
- * @Date: 2023-05-07 12:04:34
- * @LastEditors: wjc
- * @LastEditTime: 2023-05-09 16:32:34
- * @Description:
- */
- module.exports = {
- $schema: 'https://json.schemastore.org/prettierrc',
- 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,
- }
|