Skip to content
Snippets Groups Projects

Master to main

Merged Sigmund, Dominik requested to merge master into main
1 file
+ 0
2
Compare changes
  • Side-by-side
  • Inline
.eslintrc.json 0 → 100755
+ 25
0
{
"plugins": [
"security",
"eslint-plugin-tsdoc",
"@typescript-eslint/eslint-plugin"
],
"extends": [
"plugin:security/recommended",
"plugin:@typescript-eslint/recommended",
"standard-with-typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"tsdoc/syntax": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/restrict-template-expressions": ["error", {"allowNumber": true}],
"@typescript-eslint/no-var-requires": "off",
"security/detect-non-literal-fs-filename": "off",
"security/detect-object-injection": "off",
"security/detect-child-process": "off"
}
}
\ No newline at end of file
Loading