Skip to content

Instantly share code, notes, and snippets.

@alqahtani
Last active May 16, 2018 21:31
Show Gist options
  • Select an option

  • Save alqahtani/c6ebf4c0279cb59f20fd7f5d18900098 to your computer and use it in GitHub Desktop.

Select an option

Save alqahtani/c6ebf4c0279cb59f20fd7f5d18900098 to your computer and use it in GitHub Desktop.
best .eslintrc for me till now => from @Remchi
// install the following packages:
// yarn add --dev eslint prettier eslint-config-airbnb@^15.0.1 eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y@^5.1.1
{
"extends": ["airbnb", "prettier", "prettier/react"],
"plugins": ["react", "prettier"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2016,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx"]
}
],
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"singleQuote": true,
"printWitdh": 123,
"semi": false
}
],
"import/no-named-as-default": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment