Skip to content

Commit

Permalink
Get new debugInfo module to pass linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Jan 23, 2024
1 parent 07cc274 commit be26215
Show file tree
Hide file tree
Showing 4 changed files with 1,940 additions and 39 deletions.
15 changes: 15 additions & 0 deletions modules/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
},
"plugins": [
"import"
],
"extends": [
"plugin:import/errors"
],
"rules": {
"import/no-unresolved": 0
}
}
2 changes: 1 addition & 1 deletion modules/debug-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ export default function() {
/* eslint-disable-next-line no-console */
console.debug('Backbone debug info: ', JSON.stringify(info, null, 4));
return info;
};
}

0 comments on commit be26215

Please sign in to comment.