db-tutorial/prettier.config.js

11 lines
208 B
JavaScript
Raw Permalink Normal View History

2023-08-18 20:37:16 +08:00
/**
* @see https://prettier.io/docs/en/options.html
* @see https://prettier.io/docs/en/configuration.html
*/
module.exports = {
tabWidth: 2,
semi: false,
singleQuote: true,
trailingComma: 'none'
}