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