mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 13:17:08 +00:00
20 lines
486 B
JavaScript
20 lines
486 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
'mocha'
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
rules: {
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"camelcase": ["error", { "properties": "never", "ignoreDestructuring": true }],
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
},
|
|
}; |