mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
13 lines
186 B
JavaScript
13 lines
186 B
JavaScript
module.exports = {
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
singleQuote: true,
|
|
semi: false,
|
|
},
|
|
]
|
|
}
|
|
}
|