Skip to content

Commit

Permalink
fix: memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximvdw committed Nov 21, 2024
1 parent 85e3740 commit 47823ce
Show file tree
Hide file tree
Showing 3 changed files with 17,725 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
module.exports = {
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig/tsconfig.lint.json",
"sourceType": "module",
},
"plugins": [
"@typescript-eslint",
"eslint-plugin-import",
"eslint-plugin-jsdoc",
"prettier",
"deprecation"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": "warn",
"deprecation/deprecation": "warn",
"import/no-cycle": ["error", { "maxDepth": 15 }],
"import/no-unresolved": "off",
"prettier/prettier": ["error"],
"jsdoc/check-tag-names": ["error", { "definedTags": ["category"] }],
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:eslint-plugin-jsdoc/recommended",
"plugin:eslint-plugin-import/recommended",
"plugin:import/typescript",
"prettier"
]
};
Loading

0 comments on commit 47823ce

Please sign in to comment.