Skip to content

Commit

Permalink
Merge pull request #18 from vtex-apps/fix/impressions
Browse files Browse the repository at this point in the history
Fix/impressions
  • Loading branch information
jgfidelis authored Jul 9, 2019
2 parents fc9f65e + ffb88de commit 7c16df5
Show file tree
Hide file tree
Showing 10 changed files with 580 additions and 526 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md
24 changes: 22 additions & 2 deletions react/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
{
"extends": "vtex-react",
"parser": "babel-eslint",
"extends": [
"vtex",
"vtex-react",
"plugin:import/recommended"
],
"plugins": ["import"],
"rules": {
"import/no-unresolved": [
"error",
{
"commonjs": true,
"amd": true,
"ignore": ["^([a-zA-Z@]+[-\\.]?)+"]
}
]
},
"env": {
"browser": true,
"es6": true,
"node": true,
"mocha": true,
"jest": true
},
"globals": {
"__DEV__": true
}
}
3 changes: 1 addition & 2 deletions react/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"eslintIntegration": true
"trailingComma": "es5"
}
Loading

0 comments on commit 7c16df5

Please sign in to comment.