Removed andoid folder for eslint and type script and fixed apostrophes

This commit is contained in:
Clément Le Bihan
2023-12-01 15:59:19 +01:00
parent 685e79d76b
commit e5acd56b0f
3 changed files with 5 additions and 3 deletions

View File

@@ -12,7 +12,8 @@
"webpack.config.js",
"babel.config.js",
"*.test.*",
"app.config.ts"
"app.config.ts",
"android/"
],
"rules": {
"react/react-in-jsx-scope": "off",

View File

@@ -114,6 +114,7 @@
"app.config.ts",
"*/*.test.tsx",
"web-build",
"dist"
"dist",
"android"
]
}

View File

@@ -229,7 +229,7 @@ const PlayView = ({ songId, route }: RouteProps<PlayViewProps>) => {
};
inputs.forEach((input) => {
input.onmidimessage = (message) => {
console.log("onmessage");
console.log('onmessage');
const { command, note } = parseMidiMessage(message);
const keyIsPressed = command == 9;