mirror of
https://github.com/fluencelabs/js-libp2p-noise
synced 2025-04-25 08:52:32 +00:00
22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": ["plugin:@typescript-eslint/recommended"],
|
|
"rules": {
|
|
"new-parens": "error",
|
|
"no-caller": "error",
|
|
"no-bitwise": "off",
|
|
"@typescript-eslint/indent": ["error", 2],
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/interface-name-prefix": ["error", { "prefixWithI": "always" }],
|
|
"no-console": "warn"
|
|
}
|
|
}
|