mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 22:12:15 +00:00
19 lines
270 B
JavaScript
19 lines
270 B
JavaScript
const config = {
|
|
printWidth: 100,
|
|
semi: false,
|
|
singleQuote: true,
|
|
arrowParens: 'avoid',
|
|
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|
|
module.exports = config
|