The [yarn lint](https://github.com/Nautilus-Cyberneering/git-queue/blob/main/package.json#L11-L12) command uses [ESLint](https://eslint.org/) to check linting: You can use [glob syntax](https://eslint.org/docs/user-guide/command-line-interface) and I suppose we can define what we want only with one glob pattern: ``` "lint": "eslint --fix **src/*.ts; eslint --fix **src/**/*.ts; eslint --fix __tests__/**/*.ts", "lint-check": "eslint **src/*.ts; eslint **src/**/*.ts; eslint __tests__/**/*.ts", ``` instead of calling [ESLint](https://eslint.org/) three issues.