Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Volodymyr Saakian committed Mar 22, 2020
1 parent 72e4f16 commit e836e85
Show file tree
Hide file tree
Showing 41 changed files with 2,259 additions and 322 deletions.
Binary file added .DS_Store
Binary file not shown.
18 changes: 12 additions & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true
node: true,
},
extends: ['airbnb-base'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
rules: {
'eslint-disable-next-line': false
}
'arrow-parens': [0],
'implicit-arrow-linebreak': [0],
'function-paren-newline': [0],
'import/no-dynamic-require': [0],
'global-require': [0],
'operator-linebreak': [0],
'object-curly-newline': [0],
'no-plusplus': [0],
},
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ dist

# TernJS port file
.tern-port

src/config/firebaseKey.json
4 changes: 3 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"singleQuote": true
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
}
Loading

0 comments on commit e836e85

Please sign in to comment.