Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@
"ecmaVersion": 2017
},
"plugins": [
"prettier"
"prettier",
"eslint-plugin-tsdoc"
],
"rules": {
"prettier/prettier": "error",
"tsdoc/syntax": "warn",
"no-console": "off",
"eqeqeq": [
"error",
Expand All @@ -33,11 +35,15 @@
"null": "ignore"
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"strict": [
"error",
"global"
],
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-var-requires": "off"
]
}
}
4 changes: 2 additions & 2 deletions api-extractor.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"logLevel": "warning"
},
"ae-internal-missing-underscore": {
"logLevel": "none",
"logLevel": "error",
"addToApiReportFile": false
},
"ae-missing-release-tag": {
Expand All @@ -39,7 +39,7 @@
},
"ae-unresolved-link": {
"addToApiReportFile": false,
"logLevel": "none"
"logLevel": "error"
}
},
"tsdocMessageReporting": {
Expand Down
1,434 changes: 730 additions & 704 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.6",
"karma": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
Expand Down Expand Up @@ -78,7 +79,7 @@
"build:dts": "npm run build:ts && api-extractor run --typescript-compiler-folder node_modules/typescript --local && rimraf 'lib/**/*.d.ts*'",
"build:bundle": "rollup -c rollup.config.js",
"build": "npm run build:dts && npm run build:bundle",
"lint": "eslint -v && eslint --ext '.js,.ts' src test && tsc --noEmit",
"lint": "eslint -v && eslint --ext '.js,.ts' --max-warnings=0 src test && tsc -v && tsc --noEmit",
"format": "eslint --ext '.js,.ts' src test --fix",
"coverage": "nyc mocha test/node",
"prepare": "node etc/prepare.js",
Expand Down
Loading