Skip to content

Commit

Permalink
Linting for GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dokterbob committed Oct 31, 2024
1 parent 44549c4 commit 4d2c7c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lint-staged.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
module.exports = {
'**/*.{js,jsx,ts,tsx}': ['npx prettier --write', 'npx eslint --fix'],
'**/*.{ts,tsx}': [() => 'tsc --skipLibCheck --noEmit'],
'**/*.py': ['ruff check --fix', 'ruff format', () => 'pnpm run lintPython']
'**/*.py': ['ruff check --fix', 'ruff format', () => 'pnpm run lintPython'],
'.github/{workflows,actions}/**': ['actionlint']
};

0 comments on commit 4d2c7c4

Please sign in to comment.