Skip to content

Instantly share code, notes, and snippets.

@hiptkang
hiptkang / .eslintrc.js
Last active June 26, 2019 07:08
minimal-setup for jest and lint using babel
// .eslintrc.js
const config = {
"extends" : "airbnb",
"parser": "babel-eslint",
"rules": {
"no-plusplus": 2,
"no-console": "off",
},
"env": {