This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rpgedit/prettier.config.js

11 lines
173 B
JavaScript
Raw Normal View History

2019-12-24 20:02:24 +01:00
module.exports = {
semi: true,
trailingComma: 'all',
arrowParens: 'always',
singleQuote: true,
jsxSingleQuote: true,
printWidth: 120,
useTabs: true,
tabWidth: 8,
};