mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 18:18:27 -05:00
8 lines
276 B
JavaScript
8 lines
276 B
JavaScript
import { createLintStagedConfig } from '@freecodecamp/eslint-config/lintstaged';
|
|
|
|
export default {
|
|
...createLintStagedConfig(import.meta.dirname),
|
|
'./curriculum/challenges/**/*.md': files =>
|
|
files.map(filename => `node ./tools/scripts/lint/index.js '${filename}'`)
|
|
};
|