mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
22 lines
516 B
YAML
22 lines
516 B
YAML
# 'true' will fix files
|
|
autofix: false
|
|
|
|
# list of paths to ignore, uses gitignore syntaxes (executes before any rule)
|
|
ignore:
|
|
- .git/
|
|
- llvm-project/
|
|
- compiler/concrete-optimizer
|
|
- google-benchmark
|
|
|
|
rules:
|
|
# checks if file ends in a newline character
|
|
end-of-file:
|
|
# set to true to enable this rule
|
|
enable: true
|
|
|
|
# set to true to disable autofix (if enabled globally)
|
|
disable-autofix: false
|
|
|
|
# if true also checks if file ends in a single newline character
|
|
single-new-line: false
|