20 lines
213 B
Plaintext
20 lines
213 B
Plaintext
module.exports = {
|
|
env: {
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'integromat'
|
|
],
|
|
parserOptions: {
|
|
'ecmaVersion': 2017,
|
|
'ecmaFeatures': {
|
|
'globalReturn': true
|
|
}
|
|
},
|
|
globals: {
|
|
},
|
|
rules: {
|
|
}
|
|
};
|