0960dc38d1
This patch teaches doclint to regenerate table of contents automatically whenever it's needed. This patch: - splits lint.js into lint.js and cli.js - teaches cli.js to generate table-of-contents - removes the test for table-of-contents errors from doclint - adds a test for doclint failing to parse object destructuring in method parameters.
8 lines
71 B
JavaScript
8 lines
71 B
JavaScript
class Foo {
|
|
}
|
|
|
|
Foo.Events = {
|
|
Start: 'start',
|
|
Finish: 'finish',
|
|
};
|