Skip to content

Commit 993fc29

Browse files
committed
Add modification-timekeeper hook
1 parent 8a1961c commit 993fc29

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.pre-commit-config.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v5.0.0
4+
hooks:
5+
- id: check-yaml
6+
- id: end-of-file-fixer
7+
- id: trailing-whitespace
8+
9+
- repo: https://github.com/stefmolin/exif-stripper
10+
rev: 0.6.2
11+
hooks:
12+
- id: strip-exif
13+
14+
- repo: https://github.com/stefmolin/modification-timekeeper
15+
rev: 0.1.2
16+
hooks:
17+
- id: modification-timekeeper
18+
args: [--after-key=published]

keynote.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Build Your Own (Simple) Static Code Analyzer
33
author: Stefanie Molin
44
description: In this keynote, Stefanie Molin walks you through the process of creating a simple static code analyzer in Python using a data structure called an abstract syntax tree, which represents your code's structure and allows you to access its components in order to perform checks.
5-
published: 2025-04-15T00:00:00.000Z
6-
last_modified: 2025-04-24T09:10:00.000Z
5+
published: "2025-04-15T00:00:00.000-04:00"
6+
last_modified: "2025-04-24T12:12:00.000+03:00"
77
g_tag: G-25389D1SR4
88
keywords: [ast, docstring, abstract-syntax-tree, docstring-generator, numpydoc, python]
99
og:

0 commit comments

Comments
 (0)