Skip to content

Commit 6aca903

Browse files
committed
github works, update midicube
1 parent f50eed4 commit 6aca903

File tree

4 files changed

+17
-20
lines changed

4 files changed

+17
-20
lines changed

Gruntfile.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,6 @@ module.exports = grunt => {
204204
},
205205
eslint: {
206206
target: SOURCES.concat(TEST_SOURCES),
207-
options: {
208-
overrideConfigFile: '.eslintrc.json',
209-
},
210207
},
211208
qunit: {
212209
files: ['tests/gruntTest.html'],

eslint.config.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = [
2626
...globals.browser,
2727
...globals.jquery,
2828
...globals.es2026, // this should be the latest in globals, not what we transpile to.
29-
}
29+
},
3030
},
3131
rules: {
3232
'array-bracket-spacing': ['off'],
@@ -36,12 +36,12 @@ module.exports = [
3636
'camelcase': ['off'],
3737
'class-methods-use-this': ['off'],
3838
'comma-dangle': ['warn', {
39-
arrays: 'only-multiline',
40-
objects: 'always-multiline',
41-
imports: 'always-multiline',
42-
exports: 'always-multiline',
43-
functions: 'ignore',
44-
}],
39+
arrays: 'only-multiline',
40+
objects: 'always-multiline',
41+
imports: 'always-multiline',
42+
exports: 'always-multiline',
43+
functions: 'ignore',
44+
}],
4545
'curly': ['warn', 'all'],
4646
'dot-location': ['warn', 'property'],
4747
'dot-notation': ['error'],
@@ -109,7 +109,7 @@ module.exports = [
109109
'prefer-const': [
110110
'warn',
111111
{
112-
'destructuring': 'all'
112+
'destructuring': 'all',
113113
}
114114
],
115115
'prefer-destructuring': ['off'],
@@ -139,6 +139,6 @@ module.exports = [
139139
'@typescript-eslint/no-unused-vars': no_unused_vars_config,
140140
'no-undef': 'off',
141141
'no-unused-vars': 'off',
142-
}
142+
},
143143
},
144144
];

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"dependencies": {
1414
"jsonpickle": "^1.1.2",
15-
"midicube": "^0.9.1",
15+
"midicube": "^0.9.2",
1616
"vexflow": "^4.2.3"
1717
},
1818
"devDependencies": {

0 commit comments

Comments
 (0)