We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need a root path, a la webpack's resolve.root. i.e., if .eslintrc has something like
resolve.root
.eslintrc
--- settings: resolve.root: 'src'
...then the resolver for resolve.js should look in path.join(process.cwd(), 'src') as an additional base path.
resolve.js
path.join(process.cwd(), 'src')
Extra credit: allow specification of a Node-compatible JS/JSON file with a path (i.e. './webpack.config.js:resolve.root').
May want to spec out some environment-based defaults (webpack, browserify, requirejs, explicitly check for node, etc.)
Need to investigate proper setting key conventions (i.e. import/resolveRoot?) within ESLint plugins.
import/resolveRoot
The text was updated successfully, but these errors were encountered:
d63890f
README updates for es6-only + resolve.root (#20 and #18)
8a62098
Confirmed the resolve.root handling works relative to the package roo…
9137f2f
…t. (#18)
No branches or pull requests
Need a root path, a la webpack's
resolve.root
. i.e., if.eslintrc
has something like...then the resolver for
resolve.js
should look inpath.join(process.cwd(), 'src')
as an additional base path.Extra credit: allow specification of a Node-compatible JS/JSON file with a path (i.e. './webpack.config.js:resolve.root').
May want to spec out some environment-based defaults (webpack, browserify, requirejs, explicitly check for node, etc.)
Need to investigate proper setting key conventions (i.e.
import/resolveRoot
?) within ESLint plugins.The text was updated successfully, but these errors were encountered: