Installed the NPM packages below
npm install --save-dev eslint eslint-plugin-jsx-a11y eslint-plugin-import eslint-config-airbnb eslint-plugin-react
{
"extends": "airbnb",
"disallowMultipleVarDecl": false,
"rules": {
"one-var": 0,
"comma-dangle": 0,
"max-len": [0, 120, 4],
"indent": [2, 4],
"key-spacing": [2, {
"beforeColon": false,
"afterColon": true
}]
}
}