crowdriff-story-network-gallery-react
Version:
A Component that allows the embedding of a CrowdRiff Story Network gallery in a React app
29 lines (28 loc) • 452 B
JavaScript
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'react',
],
rules: {
'consistent-return': 0,
'no-multi-assign': 0,
'import/no-unresolved': 0,
'react/prop-types': 0,
'no-shadow': 0,
'func-names': 0,
},
};