Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tatethurston
Last active November 23, 2017 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatethurston/24d61976528d06b29fef76b28d17c7dc to your computer and use it in GitHub Desktop.
Save tatethurston/24d61976528d06b29fef76b28d17c7dc to your computer and use it in GitHub Desktop.
.eslintrc import/no-unresolved NODE_PATH
module.exports = {
"extends": "eslint:recommended",
"env": {
"node": true,
"mocha": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"no-console": 0
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": [
"node_modules",
process.env.NODE_PATH
]
}
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment