2019-12-06 18:20:31 +00:00
|
|
|
module.exports = {
|
2021-05-27 14:27:20 +01:00
|
|
|
plugins: [
|
|
|
|
"matrix-org",
|
|
|
|
],
|
|
|
|
extends: [
|
|
|
|
"plugin:matrix-org/javascript",
|
|
|
|
],
|
2019-12-06 18:20:31 +00:00
|
|
|
parserOptions: {
|
2021-05-27 14:27:20 +01:00
|
|
|
ecmaVersion: 2021,
|
2019-12-06 18:20:31 +00:00
|
|
|
},
|
|
|
|
env: {
|
2020-02-17 14:49:26 +00:00
|
|
|
es6: true,
|
2019-12-06 18:20:31 +00:00
|
|
|
node: true,
|
|
|
|
// we also have some browser code (ie. the preload script)
|
|
|
|
browser: true,
|
|
|
|
},
|
2020-07-21 15:06:38 +01:00
|
|
|
rules: {
|
|
|
|
"quotes": "off",
|
|
|
|
"indent": "off",
|
|
|
|
"prefer-promise-reject-errors": "off",
|
|
|
|
"no-async-promise-executor": "off",
|
|
|
|
}
|
2019-12-06 18:20:31 +00:00
|
|
|
}
|