mirror of
https://github.com/typicode/json-server.git
synced 2025-07-28 04:32:24 +08:00
15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
module.exports = {
|
|
extends: ['standard', 'standard-preact', 'prettier'],
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
singleQuote: true,
|
|
semi: false,
|
|
},
|
|
]
|
|
},
|
|
env: { jest: true }
|
|
}
|