Skip to content

Commit

Permalink
Merge pull request #1 from vovaspace/develop
Browse files Browse the repository at this point in the history
Merge 'develop' into 'master'
  • Loading branch information
vovaspace authored Sep 24, 2020
2 parents 478a591 + e86de1e commit 8190079
Show file tree
Hide file tree
Showing 176 changed files with 15,125 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
25 changes: 25 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"extends": ["airbnb", "airbnb/hooks"],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"IS_DEVELOPMENT": true
},
"settings": {
"import/resolver": {
"node": {},
"webpack": {}
}
},
"rules": {
"import/prefer-default-export": "off",
"import/no-default-export": "error",
"react/jsx-props-no-spreading": "off",
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0, "maxBOF": 0 }],
"no-empty": ["error", { "allowEmptyCatch": true }]
}
}
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# dependencies
node_modules

# production
build

# misc
.DS_Store
/.idea
/.vscode

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"*.js?(x)": "eslint --fix",
"*.scss": "stylelint --fix"
}
3 changes: 3 additions & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src/styles/**
**/*.js
**/*.jsx
Loading

0 comments on commit 8190079

Please sign in to comment.