Basic harmonica tabs image creator

This commit is contained in:
2026-01-28 22:30:09 +01:00
commit 586adb8517
19 changed files with 4126 additions and 0 deletions

42
.eslintrc Normal file
View File

@@ -0,0 +1,42 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
"prettier/prettier": "error",
"react/react-in-jsx-scope": "off",
"react/prop-types": "warn",
"no-console": "warn",
"max-len": [
"error",
{
"code": 120,
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}
],
"semi": ["error", "always"]
},
"settings": {
"react": {
"version": "detect"
}
}
}