mirror of
https://github.com/OpenBankProject/OBP-TypeScript.git
synced 2026-02-06 10:48:07 +00:00
17 lines
456 B
JavaScript
17 lines
456 B
JavaScript
module.exports = {
|
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint", "eslint-plugin-tsdoc"],
|
|
root: true,
|
|
rules: {
|
|
"@typescript-eslint/no-namespace": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
semi: [2, "always"],
|
|
quotes: [2, "double", { avoidEscape: true }],
|
|
},
|
|
plugins: ["jest"],
|
|
env: {
|
|
"jest/globals": true,
|
|
},
|
|
};
|