Skip to content

Commit

Permalink
Fix: omit checking mdfiles for mkdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebonnici committed Dec 7, 2023
1 parent f801d31 commit b930877
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@
* SPDX-License-Identifier: LicenseRef-Nordic-4-Clause
*/

module.exports = require('@nordicsemiconductor/pc-nrfconnect-shared/config/eslintrc');
const defaultEslintrc = require('@nordicsemiconductor/pc-nrfconnect-shared/config/eslintrc');

module.exports = {
...defaultEslintrc,
ignorePatterns: [...defaultEslintrc.ignorePatterns, 'doc/docs'],
};

0 comments on commit b930877

Please sign in to comment.