Last active
September 3, 2024 22:26
-
-
Save Boghdady/0f61fb9d4410f86b5acd867984ad7adb to your computer and use it in GitHub Desktop.
Eslint airbnb configrations for nodejs projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1- Install these packages in your dev dependencies using this command: | |
npm i -D eslint eslint-config-airbnb eslint-config-prettier eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-node eslint-plugin-prettier eslint-plugin-react prettier | |
// 2- Create ".eslintrc.json" file in the root directory with these configration: | |
{ | |
"extends": ["airbnb", "prettier", "plugin:node/recommended"], | |
"plugins": ["prettier"], | |
"rules": { | |
// "prettier/prettier": "error", | |
"spaced-comment": "off", | |
"no-console": "off", | |
"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", | |
"no-undef": "warn", | |
"prefer-destructuring": ["error", { "object": true, "array": false }], | |
"no-unused-vars": ["warn", { "argsIgnorePattern": "req|res|next|val" }] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment