Skip to content
Snippets Groups Projects
Select Git revision
  • e061b59ac3c65610654cd8ff17e8dc85f7ff9fdd
  • master default protected
  • devel
  • feature/add-escaping-to-templates
  • feature/add-priority-sorting
  • 3.3.0
  • 3.2.1
  • 3.2.0
  • 3.1.0
  • 3.0.0
  • 2.4.12
  • 2.4.11
  • 2.4.10
  • 2.4.9
  • 2.4.8
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.2
  • 2.3.1
  • 2.3
25 results

.editorconfig

Blame
  • .editorconfig 402 B
    # This file is for unifying the coding style for different editors and IDEs
    # editorconfig.org
    
    # WordPress Coding Standards
    # https://make.wordpress.org/core/handbook/coding-standards/
    
    root = true
    
    [*]
    charset = utf-8
    end_of_line = lf
    insert_final_newline = true
    trim_trailing_whitespace = true
    indent_style = tab
    
    [*.yml]
    indent_style = space
    indent_size = 2
    
    [*.md]
    trim_trailing_whitespace = false