Skip to content

Commit

Permalink
Tools: Updated highcharts linting rules with quote-members.
Browse files Browse the repository at this point in the history
  • Loading branch information
bre1470 authored and TorsteinHonsi committed Jun 18, 2021
1 parent ed76d2f commit 63d1d5f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"dtslint": "^4.0.8",
"eslint": "^7.22.0",
"eslint-config-eslint": "5.0.1",
"eslint-plugin-highcharts": "github:highcharts/eslint-plugin-highcharts#v1.0.7",
"eslint-plugin-highcharts": "github:highcharts/eslint-plugin-highcharts#v1.0.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.4.0",
"fs-extra": "^9.1.0",
Expand Down
5 changes: 3 additions & 2 deletions ts/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"prefer-const": 1, // @todo
"prefer-spread": 0, // @todo
"prefer-rest-params": 0, // @todo
"quote-props": [2, "as-needed", { "keywords": true, "unnecessary": false }],
"quote-props": [2, "as-needed", { "keywords": false, "unnecessary": false }],
"valid-jsdoc": [ // @todo EOL 2018-11
"error",
{
Expand Down Expand Up @@ -89,13 +89,14 @@
"@typescript-eslint/prefer-regexp-exec": 0, // @todo
"@typescript-eslint/prefer-string-starts-ends-with": 0, // @todo
"@typescript-eslint/unbound-method": 0, // @todo
"highcharts/doclet-apioption-last": 2,
"highcharts/no-highcharts-namespace": 1, // @todo
"highcharts/no-highcharts-object": 2,
"highcharts/no-mixin": 1, // @todo
"highcharts/no-optional-chaining": 2,
"highcharts/no-private-constructor-doclet": 0,
"highcharts/no-wrap": 1, // @todo
"highcharts/doclet-apioption-last": 2,
"highcharts/quote-members": 2,
"node/no-missing-import": 0, // @todo
"node/no-unsupported-features/es-syntax": 0, // @todo
}
Expand Down

0 comments on commit 63d1d5f

Please sign in to comment.