mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
15 lines
240 B
JSON
15 lines
240 B
JSON
|
{
|
||
|
"extends": ["eslint:recommended", "prettier"],
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"jest": true
|
||
|
},
|
||
|
"globals": {
|
||
|
"expect": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-console": "off",
|
||
|
"no-empty": ["error", { "allowEmptyCatch": true }]
|
||
|
}
|
||
|
}
|