mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 06:59:33 +00:00
* Add pre-commit check for the code formatter * Remove code formatter CI * Fix mtime in fast-format command
4 lines
117 B
Bash
Executable file
4 lines
117 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check coding style
|
|
make -s check-format || (echo 'Please format your code with `make format`' && false)
|