Files
concrete/.linelint.yml

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