pocket-messaging
Version:
A small cryptographic messaging library written in TypeScript both for browser and nodejs supporting TCP and WebSockets
22 lines (21 loc) • 654 B
JavaScript
module.exports = {
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
parser: "@typescript-eslint/parser",
plugins: [
"@typescript-eslint"
],
rules: {
"no-cond-assign": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-empty-function": "off",
"no-constant-condition": "off",
"@typescript-eslint/no-non-null-assertion": "off"
},
root: true,
};