Skip to content

Commit

Permalink
Add aliases to webpack config and eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsmorais committed Apr 8, 2019
1 parent ef65c11 commit 7ac9115
Show file tree
Hide file tree
Showing 4 changed files with 13,256 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@
"guard-for-in": 0,
"quotes": ["error", "single"],
"semi": ["error", "always"],
"react/forbid-prop-types": "off"
"react/forbid-prop-types": "off",
},
"settings": {
"import/resolver": {
"alias": {
"map": [
["Components", "./app/components"],
["Containers", "./app/containers"],
["Store","./app/store"],
["Utils","./app/utils"],
["UI", "./app/components/UI"]
],
"extensions": [".jsx", ".ks"]
}
}
}
}
Loading

0 comments on commit 7ac9115

Please sign in to comment.