mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-03-16 07:14:08 +01:00
13 lines
186 B
JavaScript
13 lines
186 B
JavaScript
![]() |
module.exports = {
|
||
|
plugins: ['prettier'],
|
||
|
rules: {
|
||
|
'prettier/prettier': [
|
||
|
'error',
|
||
|
{
|
||
|
singleQuote: true,
|
||
|
semi: false,
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
}
|