mirror of
https://github.com/RealKai42/qwerty-learner-vscode.git
synced 2024-11-25 16:52:37 +08:00
16 lines
260 B
JavaScript
16 lines
260 B
JavaScript
module.exports = {
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 140,
|
|
bracketSpacing: true,
|
|
semi: false,
|
|
tabWidth: 2,
|
|
jsxSingleQuote: false,
|
|
overrides: [
|
|
{
|
|
files: '.prettierrc',
|
|
options: { parser: 'json' },
|
|
},
|
|
],
|
|
}
|