UNPKG

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