@@ -4,9 +4,7 @@ module.exports = {
44 es6 : true ,
55 jest : true ,
66 } ,
7- extends : [
8- 'airbnb-base' ,
9- ] ,
7+ extends : [ 'airbnb-base' ] ,
108 parserOptions : {
119 ecmaVersion : 2020 ,
1210 } ,
@@ -18,10 +16,13 @@ module.exports = {
1816 'consistent-return' : 'off' ,
1917
2018 // Allow unused variables in certain contexts
21- 'no-unused-vars' : [ 'warn' , {
22- argsIgnorePattern : '^_' ,
23- varsIgnorePattern : '^_' ,
24- } ] ,
19+ 'no-unused-vars' : [
20+ 'warn' ,
21+ {
22+ argsIgnorePattern : '^_' ,
23+ varsIgnorePattern : '^_' ,
24+ } ,
25+ ] ,
2526 'max-len' : [ 'warn' , { code : 120 } ] ,
2627 'no-underscore-dangle' : 'off' , // Allow _id from MongoDB
2728 'no-param-reassign' : [ 'error' , { props : false } ] ,
@@ -44,7 +45,12 @@ module.exports = {
4445 } ,
4546 {
4647 // For migration and utility scripts
47- files : [ '**/migrations/**/*.js' , '**/utils/**/*.js' , 'sync-pods.js' , 'testPG.js' ] ,
48+ files : [
49+ '**/migrations/**/*.js' ,
50+ '**/utils/**/*.js' ,
51+ 'sync-pods.js' ,
52+ 'testPG.js' ,
53+ ] ,
4854 rules : {
4955 'no-restricted-syntax' : 'off' ,
5056 'no-await-in-loop' : 'off' ,
0 commit comments