mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-16 07:57:04 +08:00
20 lines
213 B
JavaScript
20 lines
213 B
JavaScript
module.exports = {
|
|
env: {
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'integromat'
|
|
],
|
|
parserOptions: {
|
|
'ecmaVersion': 2017,
|
|
'ecmaFeatures': {
|
|
'globalReturn': true
|
|
}
|
|
},
|
|
globals: {
|
|
},
|
|
rules: {
|
|
}
|
|
};
|