@ably/laravel-echo
Version:
Laravel Echo library for beautiful Ably integration
17 lines (16 loc) • 426 B
JavaScript
module.exports = {
root: true,
env: {
browser: true,
jest: true,
node: true,
},
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
rules: {
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"prefer-const": "off",
},
};