16 lines
191 B
JavaScript
16 lines
191 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
commonjs: true,
|
||
|
es2021: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'airbnb-base',
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 12,
|
||
|
},
|
||
|
rules: {
|
||
|
},
|
||
|
};
|