Skip to content

Instantly share code, notes, and snippets.

@wojciech-bilicki
Last active July 26, 2017 16:56
Show Gist options
  • Save wojciech-bilicki/bb84cbaef651c004166965ef7dc39f7a to your computer and use it in GitHub Desktop.
Save wojciech-bilicki/bb84cbaef651c004166965ef7dc39f7a to your computer and use it in GitHub Desktop.
Babel Settings for workshop #1
{
"extends": ["airbnb", "prettier", "prettier/react"],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": 2016,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": ["warn", { "aspects": ["invalidHref"] }]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment