25 lines
356 B
JavaScript
25 lines
356 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: {
|
||
|
'linebreak-style': 0,
|
||
|
'no-underscore-dangle': 0,
|
||
|
},
|
||
|
};
|