react-webpack-node
Version:
Your One-Stop solution for a full-stack app with ES6/ES2015 React.js featuring universal Redux, React Router, React Router Redux Hot reloading, CSS modules, Express 4.x, and multiple ORMs.
42 lines (41 loc) • 815 B
Plain Text
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"comma-dangle": 0,
"indent": 0,
"react/prop-types": 0,
"react/jsx-indent-props": 0,
"linebreak-style": 0,
"react/jsx-closing-bracket-location": 0,
"object-curly-spacing": 0,
"arrow-body-style": 0,
"no-console": 0,
"max-len": 0,
"prefer-template": 0,
"import/no-unresolved": 0,
"global-require": 0,
"no-underscore-dangle": 0
},
"plugins": [
"react",
"jsx-a11y"
],
"globals": {
"__DEVSERVER__": true,
"__DEVCLIENT__": true
}
}