Update dependencies: c8 to 7.7.2, eslint to 7.28.0, eslint-plugin-jsdoc to 35.1.3, eslint-plugin-unicorn to 33.0.1, globby to 11.0.3, js-yaml to 4.1.0, markdown-it-texmath to 0.9.0, markdownlint-rule-helpers to 0.14.0, ts-loader to 9.2.3, typescript to 4.3.2, webpack to 5.38.1, webpack-cli to 4.7.2.

This commit is contained in:
David Anson 2021-06-08 22:20:13 -07:00
parent e441d247ee
commit fb5f647368
6 changed files with 67 additions and 53 deletions

View file

@ -334,12 +334,12 @@ type FixInfo = {
* {@link ../schema/markdownlint-config-schema.json}.
*/
type Configuration = {
[x: string]: any;
[x: string]: RuleConfiguration;
};
/**
* Rule configuration.
*/
type RuleConfiguration = any;
type RuleConfiguration = boolean | any;
/**
* Parses a configuration string and returns a configuration object.
*/