PHP Classes

File: .editorconfig

Recommend this page to a friend!
  Classes of John Conde   PHP Email Validation Library Pro   .editorconfig   Download  
File: .editorconfig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Email Validation Library Pro
Validate email addresses using multiple rules
Author: By
Last change: chore: enhance editorconfig for better file type support

- Add specific rules for PHP files:
- 4-space indentation (PSR-12)
- 120 character line length limit
- UTF-8 encoding
- LF line endings
- Add rules for YAML/XML/JSON files (2-space indentation)
- Add rules for JavaScript/TypeScript/CSS files (2-space indentation)
- Add rules for Markdown files (no line length limit)
- Maintain existing global settings
Date: 18 days ago
Size: 507 bytes
 

Contents

Class file image Download
root = true [*] charset = utf-8 end_of_line = lf indent_style = space indent_size = 4 insert_final_newline = true trim_trailing_whitespace = true [*.{php,phpt}] indent_style = space indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true max_line_length = 120 [*.{yml,yaml,xml,json}] indent_style = space indent_size = 2 [*.md] trim_trailing_whitespace = false max_line_length = off [*.{js,jsx,ts,tsx,css,scss}] indent_style = space indent_size = 2