mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSameLine: true,
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
semi: true,
|
|
tabWidth: 4,
|
|
trailingComma: 'all',
|
|
};
|