Skip to content

Instantly share code, notes, and snippets.

@wesdeveloper
Last active August 22, 2022 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesdeveloper/bc5a8fddf4343026af71678cb21a8c7a to your computer and use it in GitHub Desktop.
Save wesdeveloper/bc5a8fddf4343026af71678cb21a8c7a to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
rules: {
"max-len": 1,
"no-console": 0,
"no-undef": 0,
"eol-last": 2,
"no-confusing-arrow": 0,
"no-tabs": 0,
"no-unused-vars": 1,
"indent": ["error", "tab"],
"quotes": [
"error",
"single"
],
"comma-spacing": [2, { "before": false, "after": true }],
"comma-style": [2, "last"],
"jsx-a11y/href-no-hash": 0,
"import/no-extraneous-dependencies": 0
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment