25 lines
894 B
YAML
25 lines
894 B
YAML
# Configuration for the crev tool
|
|
# for more info see: https://crevcli.com/docs
|
|
|
|
# specify your CREV API key (necessary for review command) ! this overwrites the value you specify in the environment variable
|
|
# you can get one on: https://crevcli.com/api-key
|
|
crev_api_key: # ex. csk_8e796a8f6fdb15f0902eee0d4138b9d5975e244e6cc61ef502feaf37af24c7cb
|
|
# specify the prefixes of files and directories to ignore (by default common configuration files are ignored)
|
|
ignore-pre: [
|
|
data,
|
|
LICENSE,
|
|
private.md,
|
|
private_oauth2_flow.md,
|
|
.env,
|
|
.env.prod,
|
|
maplefile-frontend,
|
|
Dockerfile,
|
|
dev.Dockerfile,
|
|
node_modules,
|
|
ios,
|
|
android,
|
|
] # ex. [tests, readme.md, scripts]
|
|
# specify the extensions of files to ignore
|
|
ignore-ext: [.md, .yml] # ex. [.go, .py, .js]
|
|
# specify the extensions of files to include
|
|
include-ext: [.js, .jsx, .ts, .tsx] # ex. [.go, .py, .js]
|