telegraf-bot-pattern/.eslintrc

35 lines
644 B
Plaintext

{
"env": {
"es6": true,
"node": true
},
"plugins": [
"security"
],
"extends": [
"standard",
"plugin:security/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-useless-constructor": "warn",
"indent": "off",
"no-unused-vars": "warn",
"space-before-function-paren": "off",
"comma-dangle": "off",
"no-undef": "off",
"no-tabs": "off",
"no-mixed-spaces-and-tabs": "off",
"curly": "off",
"no-new": "off"
}
}