You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
521 B
JavaScript
25 lines
521 B
JavaScript
// Copyright (C) 2019-2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module.exports = {
|
|
plugins: [],
|
|
recurseDepth: 10,
|
|
source: {
|
|
includePattern: '.+\\.js(doc|x)?$',
|
|
excludePattern: '(^|\\/|\\\\)_',
|
|
},
|
|
sourceType: 'module',
|
|
tags: {
|
|
allowUnknownTags: false,
|
|
dictionaries: ['jsdoc', 'closure'],
|
|
},
|
|
templates: {
|
|
cleverLinks: false,
|
|
monospaceLinks: false,
|
|
default: {
|
|
outputSourceFiles: false,
|
|
},
|
|
},
|
|
};
|