mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-19 22:25:24 +00:00
Initial commit 🚀
This commit is contained in:
19
4-natours/after-section-06/.eslintrc.json
Normal file
19
4-natours/after-section-06/.eslintrc.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"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" }]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user