VM-Operator/.eslintrc.json
Michael N. Lipp 39a2a0389e
Some checks failed
Java CI with Gradle / build (push) Has been cancelled
Bugfix/ts style (#17)
Fix style warnings.
2023-10-31 23:03:48 +01:00

16 lines
338 B
JSON

{
"root": true,
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
},
"ignorePatterns": ["src/**/*.test.ts", "build/**"]
}