Skip to content

Commit

Permalink
update deps and format
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioramos committed May 24, 2018
1 parent dcbb9e3 commit 3af8b58
Show file tree
Hide file tree
Showing 9 changed files with 2,124 additions and 2,121 deletions.
29 changes: 29 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.git/*
.DS_Store

license
yarn.lock
.travis.yml

.yarnclean
.eslintignore
.prettierignore
.npmignore
.gitignore
.gitattributes
.dockerignore
.editorconfig

dist
build

*.ico
*.html
*.log
*.svg
*.map
*.png
*.snap
*.ttf
*.sh
*.txt
31 changes: 31 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"overrides": [
{
"files": [
".prettierrc",
".eslintrc",
".babelrc",
".tern-project",
".stylelintrc",
".lighthouserc"
],
"options": {
"parser": "json"
}
},
{
"files": ["package.json"],
"options": {
"printWidth": 180
}
}
]
}
Loading

0 comments on commit 3af8b58

Please sign in to comment.