Lint file not found in WSL

I have the following structure in my project:

aibolit
├───apps
├───bin
│   ├───lint
...

lint is a bash script. But when I try to call it from the aibolit folder, I see the following error:
enter image description here

This is lint running script:

"lint": "npm run lint:js && npm run lint:css",
"lint:js": "bin/lint",
"lint:css": "npx stylelint "apps/**/*.scss"",

ls shows the bin folder and the lint file in it
enter image description here