mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-11 19:14:26 +00:00
20 lines
605 B
JSON
20 lines
605 B
JSON
{
|
|
"extends": ["airbnb", "prettier", "plugin:node/recommended"],
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"spaced-comment": "off",
|
|
"no-console": "warn",
|
|
"consistent-return": "off",
|
|
"func-names": "off",
|
|
"object-shorthand": "off",
|
|
"no-process-exit": "off",
|
|
"no-param-reassign": "off",
|
|
"no-return-await": "off",
|
|
"no-underscore-dangle": "off",
|
|
"class-methods-use-this": "off",
|
|
"prefer-destructuring": ["error", { "object": true, "array": false }],
|
|
"no-unused-vars": ["error", { "argsIgnorePattern": "req|res|next|val" }]
|
|
}
|
|
}
|