Git pre-push hook to check formatting (#200)

Add formatting check to Git pre-push hook
This commit is contained in:
Adam Chalmers
2023-07-27 12:13:51 -05:00
committed by GitHub
parent aca9b9226c
commit be7605cdef
5 changed files with 14 additions and 3 deletions

View File

@ -263,7 +263,7 @@ export const useStore = create<StoreState>()(
set((state) => ({ kclErrors: [...state.kclErrors, e] }))
},
resetKCLErrors: () => {
set({ kclErrors: []})
set({ kclErrors: [] })
},
ast: null,
setAst: (ast) => {