Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/typescript - exploratory continuation #26

Open
wants to merge 9 commits into
base: feat/typescript
Choose a base branch
from
27 changes: 20 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
{
"root": true,
"extends": [ "@asd14/eslint-config/targets/node-ts" ],
"extends": [
"@asd14/eslint-config/targets/node-ts"
],
"rules": {
"jsdoc/require-example": ["error", { "exemptedBy": ["internal"] }],

"jsdoc/require-example": [
"error",
{
"exemptedBy": [
"internal"
]
}
],
// disable until upstream issues fixed
"jsdoc/check-line-alignment": "off",

// "jsdoc/check-line-alignment": ["error", "always", {
// "tags": ["tags"]
// }],
"jsdoc/check-tag-names": ["warn", {
"definedTags": ["tag", "signature"]
}]
"jsdoc/check-tag-names": [
"warn",
{
"definedTags": [
"tag",
"signature"
]
}
]
},
"settings": {
"import/cache": {
Expand Down
2 changes: 1 addition & 1 deletion .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"*.{js,json}": "eslint --quiet",
"*.{js,json}": "eslint --quiet src",
"*.md": "markdownlint --ignore CHANGELOG.md",
".circleci/config.yml": "circleci config validate"
}
276 changes: 230 additions & 46 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading