UNPKG

283 BJavaScriptView Raw
1"use strict";
2
3module.exports = function isEslintConfigFile(filename) {
4 // Eslint configs can be nested (not only the root path).
5 // See: https://eslint.org/docs/user-guide/configuring#configuration-file-formats
6 return /\.eslintrc(?:\.(?:js(?:on)?|ya?ml))?$/.test(filename);
7};
\No newline at end of file