Project description
Project license
Licenses of dependencies
| # EditorConfig is awesome: https://EditorConfig.org | |
| # Based on following Google Style Guides: | |
| # - C++: https://google.github.io/styleguide/cppguide.html | |
| # - C#: https://google.github.io/styleguide/csharp-style.html | |
| # - Go: https://google.github.io/styleguide/go/ | |
| # - HTML/CSS: https://google.github.io/styleguide/htmlcssguide.html | |
| # - JavaScript: https://google.github.io/styleguide/jsguide.html | |
| # - Java: https://google.github.io/styleguide/javaguide.html | |
| # - Python: https://google.github.io/styleguide/pyguide.html | |
| # - Shell: https://google.github.io/styleguide/shellguide.html | |
| # - TypeScript: https://google.github.io/styleguide/tsguide.html | |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 2 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | |
| max_line_length = 80 | |
| [*.{md,py}] | |
| indent_size = 4 | |
| [*.{cs,java,kt,kts,yaml,yml}] | |
| max_line_length = 100 | |
| [*.{bat,cmd}] | |
| end_of_line = crlf | |
| charset = latin1 | |
| [*.{csv,sln}] | |
| end_of_line = crlf | |
| [*.{html,xml,jsx,tsx}] | |
| max_line_length = 120 | |
| [*.ics] | |
| end_of_line = crlf | |
| [{Makefile,*.mk,*.go}] | |
| indent_style = tab | |
| indent_size = 4 |
| # https://help.github.com/articles/dealing-with-line-endings/ | |
| * text=auto eol=lf | |
| *.bat text eol=crlf | |
| *.cmd text eol=crlf | |
| *.csv text eol=crlf | |
| *.sln text eol=crlf |
| # see also https://gitignore.io | |
| # Project | |
| /data/ | |
| # Build | |
| dist/ | |
| tmp/ | |
| vendor/ | |
| # Gradle | |
| .gradle/ | |
| build/ | |
| # Maven | |
| target/ | |
| # Node | |
| coverage/ | |
| node_modules/ | |
| junit.xml | |
| # Python | |
| __pycache__/ | |
| # Eclipse | |
| .settings/ | |
| bin/ | |
| .project | |
| .classpath | |
| *.launch | |
| # IntelliJ IDEA | |
| .idea/ | |
| out/ | |
| *.iml | |
| # VS Code | |
| .vscode/ | |
| # Mac OS | |
| .DS_Store | |
| # Windows | |
| Thumbs.db |