Skip to content

Instantly share code, notes, and snippets.

@maiquealmeida
Last active March 5, 2019 15:56
Show Gist options
  • Save maiquealmeida/9195425f03736c410dffdc01c86a4313 to your computer and use it in GitHub Desktop.
Save maiquealmeida/9195425f03736c410dffdc01c86a4313 to your computer and use it in GitHub Desktop.
Configuração do ESLint e EditorConfig para uso com o CRA
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"jest": true
},
"plugins": ["react", "jsx-a11y", "import"],
"rules": {
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".jsx"]
}
],
"global-require": "off",
"import/prefer-default-export": "off",
"react/jsx-one-expression-per-line": "off"
}
}
yarn add eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react -D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment