phenomic
Version:
Modern website generator based on the React and Webpack ecosystem.
20 lines (19 loc) • 398 B
JavaScript
;
module.exports = {
"parser": "babel-eslint",
"extends": ["eslint:recommended", "plugin:react/recommended"],
"env": {
"browser": true,
"node": true
},
"plugins": ["react"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"generators": true,
"experimentalObjectRestSpread": true
}
}
};