mirror of
https://github.com/penpot/penpot.git
synced 2026-03-13 13:57:21 +00:00
10 lines
262 B
Bash
Executable File
10 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
clj-kondo --parallel=true --lint common/src;
|
|
clj-kondo --parallel=true --lint frontend/src;
|
|
clj-kondo --parallel=true --lint backend/src;
|
|
clj-kondo --parallel=true --lint exporter/src/;
|
|
clj-kondo --parallel=true --lint library/src;
|