@ewmarkets/prettier-node
Version:
A Prettier shareable config for projects using 'Prettier' and ESLint for NodeJS projects
25 lines • 470 B
JSON
{
"env": {
"es2021": true,
"node": true
},
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"no-var": "off",
"prefer-arrow-callback": [
"error",
{
"allowNamedFunctions": true
}
],
"no-use-before-define": "off",
"strict": "off"
}
}