Skip to content
Snippets Groups Projects
Select Git revision
  • aff35d52a418e541add8e6a4f99e796ec7f28ddb
  • main default protected
  • 1.2.1
  • 1.2.0
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.0
10 results

.editorconfig

Blame
  • .editorconfig 346 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
    indent_size = 4
    tab_width = 4