├── .editorconfig ├── .gitattributes ├── .github ├── DISCUSSION_TEMPLATE │ └── add-a-project-to-the-projects-using-editorconfig-page.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── config.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md └── assets └── EditorConfig_Logo.svg /.editorconfig: -------------------------------------------------------------------------------- 1 | #editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg binary 2 | -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/add-a-project-to-the-projects-using-editorconfig-page.yml: -------------------------------------------------------------------------------- 1 | title: 'Add to "Projects Using EditorConfig"' 2 | body: 3 | - type: textarea 4 | attributes: 5 | label: Request 6 | value: | 7 | Please add to "Projects Using EditorConfig" 8 | 9 | ``` 10 | []() ([source]( 11 | ``` 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Create a report to help us improve the EditorConfig. 4 | title: "[BUG] " 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | ## Describe the bug 13 | A clear and concise description of what the bug is. 14 | 15 | ## How to reproduce 16 | Steps to reproduce the behavior: 17 | 1. Go to '...' 18 | 2. Type '...' 19 | 2. Open '...' 20 | 4. See error 21 | 22 | ## Expected behavior 23 | 24 | 25 | ## Additional context 26 | Add any other context (log files, links, examples...) about the bug here. 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Request 3 | about: Suggest an idea for this project. 4 | title: "[FEATURE] " 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Which problem does this feature fix? 11 | Description of what the problem is (Ex: Can't select specific file). 12 | 13 | ## Describe the solution you'd like 14 | A clear description of what you want EditorConfig to do. 15 | 16 | ## Additional context 17 | Add any other information about the feature request here. 18 | -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. 4 | 5 | We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. 6 | 7 | Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. 8 | 9 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team. 10 | 11 | This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. 12 | 13 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. 14 | 15 | This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.1.0, available at [http://contributor-covenant.org/version/1/1/0/](http://contributor-covenant.org/version/1/1/0/) 16 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing to EditorConfig 2 | ============================ 3 | 4 | Submitting an Issue 5 | ------------------- 6 | Having problem using EditorConfig or looking for support for your favorite text 7 | editor or IDE? Feel free to submit an issue if there isn't one yet. Please 8 | also consider filing a support request with your editor for EditorConfig 9 | support. Please also provide links to any relevant discussions elsewhere on 10 | the Internet relating to EditorConfig in your editor. 11 | 12 | Before submitting an issue, please run [this script][2] to check whether there 13 | is a typo in your `.editorconfig` files when applicable. 14 | 15 | How You Can Help 16 | ---------------- 17 | Below are some ways you can help out. 18 | 19 | EditorConfig could really use: 20 | 21 | - Your feedback, opinions, and advice. We really want to hear what you think! 22 | - More plugins! We want all the plugins. 23 | - Add your projects to [Projects Using EditorConfig][1] and watch the community grow! 24 | - Help evangelize. More EditorConfig users means less style wars. 25 | - Help maintaining and improving core libraries. 26 | 27 | More stuff we could use: 28 | 29 | - Better documentation 30 | - Better tests 31 | - Help improving the EditorConfig website 32 | - Native support for EditorConfig in major text editors 33 | 34 | [1]: https://github.com/editorconfig/editorconfig/wiki/Projects-Using-EditorConfig 35 | [2]: https://github.com/editorconfig/utilities/raw/master/check-typos/checktypos.py 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### This repository is placeholder used for [issue tracking][] for format issues and other universal [EditorConfig][] issues, as well as the [wiki pages][]. 2 | 3 | 4 | [EditorConfig]: https://editorconfig.org 5 | [issue tracking]: https://github.com/editorconfig/editorconfig/issues 6 | [wiki pages]: https://github.com/editorconfig/editorconfig/wiki 7 | -------------------------------------------------------------------------------- /assets/EditorConfig_Logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | --------------------------------------------------------------------------------