File tree Expand file tree Collapse file tree 5 files changed +12
-3
lines changed Expand file tree Collapse file tree 5 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 7979 - name : Install dependencies
8080 run : pip install pre-commit
8181 - name : Run pre-commit checks
82- run : pre-commit run --all-files
82+ run : SKIP=ruff-format pre-commit run --all-files
8383
8484 ui-precommit-check :
8585 permissions :
Original file line number Diff line number Diff line change 5252 - name : Install dependencies
5353 run : pip install pre-commit
5454 - name : Run pre-commit checks
55- run : pre-commit run --all-files
55+ run : SKIP=ruff-format pre-commit run --all-files
5656
5757 unit-tests :
5858 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 88 rev : v0.11.7
99 hooks :
1010 - id : ruff
11+ name : run linter
12+ args : [ --fix, --show-fixes ]
13+ - id : ruff-format
14+ name : run formatter
1115- repo : https://github.com/pre-commit/mirrors-mypy
1216 rev : v1.15.0
1317 hooks :
Original file line number Diff line number Diff line change @@ -26,7 +26,11 @@ export const viewport: Viewport = {
2626 width : 'device-width' ,
2727} ;
2828
29- export default function RootLayout ( { children } : { children : React . ReactNode } ) {
29+ export default function RootLayout ( {
30+ children,
31+ } : Readonly < {
32+ children : React . ReactNode ;
33+ } > ) {
3034 return (
3135 < html lang = "en" >
3236 < head >
Original file line number Diff line number Diff line change 1+ import '@testing-library/jest-dom' ;
You can’t perform that action at this time.
0 commit comments