mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
71116bfa27
This migrates to the new plugin form of our custom ESLint configs. As part of this, some packages are de-duplicated, configs streamlined, etc.
11 lines
153 B
JavaScript
11 lines
153 B
JavaScript
module.exports = {
|
|
env: {
|
|
mocha: true,
|
|
},
|
|
|
|
// mocha defines a 'this'
|
|
rules: {
|
|
"@babel/no-invalid-this": "off",
|
|
},
|
|
};
|