mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-09 21:07:56 -05:00
20 lines
522 B
YAML
20 lines
522 B
YAML
# 'true' will fix files
|
|
autofix: false
|
|
|
|
# list of paths to ignore, uses gitignore syntaxes (executes before any rule)
|
|
ignore:
|
|
- compilers/concrete-compiler/llvm-project
|
|
- backends/concrete-cuda/implementation
|
|
|
|
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
|