mirror of
https://github.com/kind-0/nsecbunkerd.git
synced 2025-03-17 13:22:54 +01:00
27 lines
719 B
JSON
27 lines
719 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": 2021
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"env": {
|
|
"jest": true
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": ["warn", { "args": "none" }], // No warnings for unused function arguments, which might be used in the future.
|
|
"no-constant-binary-expression": "error",
|
|
"semi": ["error", "always"]
|
|
},
|
|
"globals": {
|
|
"Buffer": true,
|
|
"expect": true,
|
|
"process": true,
|
|
"test": true
|
|
}
|
|
} |