From e86d15540f301567f938d7c3aeba8516bfd367c9 Mon Sep 17 00:00:00 2001 From: Grace Park Date: Mon, 25 Nov 2024 14:26:55 -0800 Subject: [PATCH] add comment --- lib/rules/filenames-match-regex.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/rules/filenames-match-regex.js b/lib/rules/filenames-match-regex.js index 69881a52..515887ea 100644 --- a/lib/rules/filenames-match-regex.js +++ b/lib/rules/filenames-match-regex.js @@ -1,3 +1,5 @@ +// This is adapted from https://github.com/selaux/eslint-plugin-filenames since it's no longer actively maintained +// and needed a fix for eslint v9 const path = require('path') const parseFilename = require('../utils/parse-filename') const getExportedName = require('../utils/get-exported-name')