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