eslint-plugin-require-path-exists icon indicating copy to clipboard operation
eslint-plugin-require-path-exists copied to clipboard

Checks all require path's to exist as files

Results 13 eslint-plugin-require-path-exists issues
Sort by recently updated
recently updated
newest added

Hello, I recently ran into an issue where we'd incorrectly specified a dependency as a devDependency - which meant the tests passed, but the published package was broken. Would you...

my eslintrc ```json "require-path-exists/exists": [ "warn", { "extensions": [ "", ".js", ".jsx", ".json", ".scss", ".css", ".sss" ], "webpackConfigPath": "webpack.config.babel.js" }] ``` error message

i would like to write similar plugin and was looking in source code to find out your testing approach. You dont have one and thats fine, i am still thankful...