8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
|
/**
|
||
|
* @see https://prettier.io/docs/en/options.html
|
||
|
* @see https://prettier.io/docs/en/configuration.html
|
||
|
*/
|
||
|
module.exports = {
|
||
|
tabWidth: 2, semi: false, singleQuote: true
|
||
|
}
|