mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-07-28 04:08:05 +00:00
applying some recomendations from https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 88,
|
|
tabWidth: 4,
|
|
};
|