Skip to content

Commit a8a2cff

Browse files
committed
Merge branch 'master' of github.com:langchain-ai/langchain
2 parents f4ff451 + d1679ce commit a8a2cff

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.editorconfig

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# All files
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
# Python files
12+
[*.py]
13+
indent_style = space
14+
indent_size = 4
15+
max_line_length = 88
16+
17+
# JSON files
18+
[*.json]
19+
indent_style = space
20+
indent_size = 2
21+
22+
# YAML files
23+
[*.{yml,yaml}]
24+
indent_style = space
25+
indent_size = 2
26+
27+
# Markdown files
28+
[*.md]
29+
indent_style = space
30+
indent_size = 2
31+
trim_trailing_whitespace = false
32+
33+
# Configuration files
34+
[*.{toml,ini,cfg}]
35+
indent_style = space
36+
indent_size = 4
37+
38+
# Shell scripts
39+
[*.sh]
40+
indent_style = space
41+
indent_size = 2
42+
43+
# Makefile
44+
[Makefile]
45+
indent_style = tab
46+
indent_size = 4
47+
48+
# Jupyter notebooks
49+
[*.ipynb]
50+
# Jupyter may include trailing whitespace in cell
51+
# outputs that's semantically meaningful
52+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)