mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-06-27 14:06:01 +00:00
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
/**
|
|
* @type {import('prettier').Config}
|
|
*/
|
|
module.exports = {
|
|
trailingComma: 'all',
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: true,
|
|
printWidth: 100,
|
|
bracketSpacing: true,
|
|
};
|