1234567891011121314151617 |
- module.exports = {
- printWidth: 120,
- tabWidth: 2,
- useTabs: false,
- semi: true,
- singleQuote: true,
- quoteProps: 'as-needed',
- jsxSingleQuote: false,
- trailingComma: 'es5',
- bracketSpacing: true,
- jsxBracketSameLine: false,
- arrowParens: 'always',
- htmlWhitespaceSensitivity: 'ignore',
- vueIndentScriptAndStyle: true,
- endOfLine: 'auto',
- eslintIntegration: false,
- };
|