Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Add more linting rules
  • Loading branch information
w3nl committed Jul 25, 2024
1 parent 6f4337f commit 8b974f6
Show file tree
Hide file tree
Showing 4 changed files with 481 additions and 528 deletions.
31 changes: 22 additions & 9 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 All @@ -23,12 +41,7 @@
"browser": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"jsdoc": {
"mode": "typescript"
}
}
}
Loading

0 comments on commit 8b974f6

Please sign in to comment.