Skip to content

Commit

Permalink
fix: added trailing commas requested by linting
Browse files Browse the repository at this point in the history
  • Loading branch information
voxpelli committed Dec 7, 2022
1 parent cf54dd1 commit 952c2fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ module.exports = {
'import/order': [
'error',
{
'groups': ['builtin', 'external', ['internal', 'parent', 'sibling', 'index'], 'type']
}
'groups': ['builtin', 'external', ['internal', 'parent', 'sibling', 'index'], 'type'],
},
],

'promise/prefer-await-to-then': 'error',
Expand Down
6 changes: 3 additions & 3 deletions mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

module.exports = {
'env': {
'mocha': true
'mocha': true,
},
'rules': {
'no-unused-expressions': 0
}
'no-unused-expressions': 0,
},
};

0 comments on commit 952c2fa

Please sign in to comment.