https://github.com/javanile/editorconfig
EditorConfig on the fly!
https://github.com/javanile/editorconfig
editorconfig makefile makefile-targets
Last synced: about 2 months ago
JSON representation
EditorConfig on the fly!
- Host: GitHub
- URL: https://github.com/javanile/editorconfig
- Owner: javanile
- License: mit
- Created: 2021-08-22T07:14:44.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-16T13:21:04.000Z (about 2 years ago)
- Last Synced: 2025-02-04T16:50:34.655Z (11 months ago)
- Topics: editorconfig, makefile, makefile-targets
- Homepage: https://editorconfig.javanile.org
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EditorConfig
> _TIP: Use EditorConfig but download it only when needed_
Starting a code debugging or development session requires the use of the `.editorconfig` file but this risks increasing the number of files in the root of your project especially when you want to present your project on GitHub and avoid confusing users with a long list of dotfiles. Our advice is to download it when needed, creating a specific target in your `Makefile`.
## Usage
### Essential
Add the following line into `.gitignore` file
```
.editorconfig
```
Download `.editorconfig` file
```
curl -so .editorconfig https://editorconfig.javanile.org/lib/php
```
### Makefile
Add the followig targets to your `Makefile`
```
## Start development or debugging session
dev: init
## Prepare repository files and directories
init: editorconfig
## Download `.editorconfig` file
editorconfig:
curl -so .editorconfig https://editorconfig.javanile.org/lib/php
```
## Good to know
### See more
-
### Contributing
Thank you for considering contributing to this project! The contribution guide can be found in the [CONTRIBUTING.md](CONTRIBUTING.md).
### Code of Conduct
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](CONTRIBUTING.md).
### Security Vulnerabilities
If you discover a security vulnerability within Laravel, please send an e-mail to Francesco Bianco via [bianco@javanile.org](mailto:bianco@javanile.org). All security vulnerabilities will be promptly addressed.
### License
This project is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).