CoolFace
Apppublic

sheet2023/Note_singe

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
.editorconfig37 linesDownload Raw Back to root
1# http://editorconfig.org2root = true3 4[*]5indent_style = space6indent_size = 27end_of_line = lf8charset = utf-89trim_trailing_whitespace = true10insert_final_newline = true11 12# Use 4 spaces for the Python files13[*.py]14indent_size = 415max_line_length = 8016 17# The JSON files contain newlines inconsistently18[*.json]19insert_final_newline = ignore20 21# Minified JavaScript files shouldn't be changed22[**.min.js]23indent_style = ignore24insert_final_newline = ignore25 26# Makefiles always use tabs for indentation27[Makefile]28indent_style = tab29 30# Batch files use tabs for indentation31[*.bat]32indent_style = tab33 34[*.md]35trim_trailing_whitespace = false36 37