mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-15 13:00:34 -05:00
* Add and run end-of-file-fixer * Add and run trailing-whitespace * Add and run check-yaml * Add and run check-json * Add and run pretty-format-yaml * Fix comment indentation
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSameLine: true,
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
plugins: ['prettier-plugin-svelte'],
|
|
semi: true,
|
|
svelteSortOrder: 'options-styles-scripts-markup',
|
|
svelteStrictMode: false,
|
|
svelteIndentScriptAndStyle: true,
|
|
tabWidth: 4,
|
|
trailingComma: 'all',
|
|
}
|