Skip to content

Commit be26215

Browse files
committed
Get new debugInfo module to pass linting
1 parent 07cc274 commit be26215

File tree

4 files changed

+1940
-39
lines changed

4 files changed

+1940
-39
lines changed

modules/.eslintrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 6,
4+
"sourceType": "module",
5+
},
6+
"plugins": [
7+
"import"
8+
],
9+
"extends": [
10+
"plugin:import/errors"
11+
],
12+
"rules": {
13+
"import/no-unresolved": 0
14+
}
15+
}

modules/debug-info.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ export default function() {
2828
/* eslint-disable-next-line no-console */
2929
console.debug('Backbone debug info: ', JSON.stringify(info, null, 4));
3030
return info;
31-
};
31+
}

0 commit comments

Comments
 (0)