create-react-ssr-layout
Version:
A useful tool to quickly build a starting express server that uses custom SSR with a custom jsx render engine
27 lines (26 loc) • 426 B
Plain Text
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
overrides: [
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: [
'react',
],
rules: {
'react/prop-types': 'off',
'react/jsx-props-no-spreading': 'off',
'react/no-danger': 'off',
'no-console': 'off',
},
};