Skip to content

Commit

Permalink
Merge pull request #78 from w3nl/feature/quality-density
Browse files Browse the repository at this point in the history
Add a test for the quality and density
  • Loading branch information
w3nl authored Jul 25, 2024
2 parents 7eb24aa + fee76fb commit 4b39e52
Show file tree
Hide file tree
Showing 6 changed files with 368 additions and 68 deletions.
22 changes: 20 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"settings": {
"jsdoc": {
"mode": "typescript"
}
},
"root": true,
"extends": [
"@hckrnews/eslint-config"
"@hckrnews/eslint-config",
"plugin:import/recommended",
"plugin:n/recommended",
"plugin:jsdoc/recommended"
],
"plugins": [
"import"
Expand All @@ -14,7 +23,16 @@
}
],
"consistent-return": "warn",
"eqeqeq": "warn"
"eqeqeq": "warn",
"jsdoc/require-param-description": "off",
"jsdoc/require-property-description": "off",
"jsdoc/require-returns-description": "off",
"max-len": [
"warn",
{
"code": 120
}
]
},
"env": {
"es6": true,
Expand Down
Loading

0 comments on commit 4b39e52

Please sign in to comment.