| 1234567891011121314 |
- const fabric = require('@umijs/fabric')
- module.exports = {
- ...fabric.prettier,
- eslintIntegration: false,
- stylelintIntegration: false,
- semi: false,
- quoteProps: 'consistent',
- htmlWhitespaceSensitivity: 'ignore',
- jsxBracketSameLine: true,
- trailingComma: 'none', // 末尾逗号
- bracketSpacing: true, // 字面量对象包括数组对象括号中的空格,默认true
- arrowParens: 'avoid' // 箭头函数中的括号 “avoid” - 在有需要的时候使用. Example: x => x
- }
|