0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 15:03:07 +00:00

Update more dependencies

This commit is contained in:
Trevor Buckner
2020-05-20 10:14:05 -04:00
parent e971da2b59
commit 62a827ce49
3 changed files with 177 additions and 325 deletions

View File

@@ -1,5 +1,5 @@
module.exports = {
root: true,
root : true,
parserOptions : {
ecmaVersion : 9,
sourceType : 'module',
@@ -9,7 +9,7 @@ module.exports = {
},
env : {
browser : true,
node: true
node : true
},
plugins : ['react'],
rules : {
@@ -48,7 +48,7 @@ module.exports = {
'no-var' : 'warn',
'prefer-const' : 'warn',
'prefer-template' : 'warn',
'quotes' : ['warn', 'single', { 'allowTemplateLiterals': true } ],
'quotes' : ['warn', 'single', { 'allowTemplateLiterals': true }],
'semi' : ['warn', 'always'],
/** Whitespace **/