Skip to content

Commit

Permalink
Merge f54b13d into a28f42d
Browse files Browse the repository at this point in the history
  • Loading branch information
navdeepsinghkhalsa committed Apr 12, 2019
2 parents a28f42d + f54b13d commit 3907c44
Show file tree
Hide file tree
Showing 24 changed files with 9,698 additions and 4,697 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"env"
]
}
11 changes: 11 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": ["airbnb-base", "prettier"],
"env": {
"jest": true,
"node": true
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": ["error"]
}
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
coverage
node_modules/
package-lock.json
dist
yarn-error.log
14 changes: 10 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
.vscode
coverage
src
webpack.config.js
yarn.lock
.vscode
.babelrc
.editorconfig
.eslintignore
.travis.yml
.eslintrc
.gitignore
.npmignore
.prettierignore
.prettierrc
.travis.yml
webpack.config.js
yarn.lock
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"endOfLine": "lf"
}

0 comments on commit 3907c44

Please sign in to comment.