mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
19 lines
362 B
YAML
19 lines
362 B
YAML
---
|
|
# We'll use defaults from the LLVM style, but with 4 columns indentation.
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 4
|
|
---
|
|
Language: Cpp
|
|
# Force pointers to the type for C++.
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
---
|
|
Language: JavaScript
|
|
# Use 100 columns for JS.
|
|
ColumnLimit: 100
|
|
---
|
|
Language: Proto
|
|
# Don't format .proto files.
|
|
DisableFormat: true
|
|
...
|