mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-03-15 23:04:59 +01:00
12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
module.exports = {
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
singleQuote: true,
|
|
semi: false,
|
|
},
|
|
]
|
|
}
|
|
}
|