editorconfig javascript example

JavaScript
function set_file_editorconfig_opts(file, config) {
  try {
    var eConfigs = editorconfig.parseSync(file);
    if (eConfigs.indent_style === "tab") {
      config.indent_with_tabs = true;
    } else if (eConfigs.indent_style === "space") {
      config.indent_with_tabs = false;
    if (eConfigs.indent_size) {
      config.indent_size = eConfigs.indent_size;
    if (eConfigs.max_line_length) {
      if (eConfigs.max_line_length === "off") {
        config.wrap_line_length = 0;
      } else {
        config.wrap_line_length = parseInt(eConfigs.max_line_length, 10);
    if (eConfigs.insert_final_newline === true) {
      config.end_with_newline = true;
    } else if (eConfigs.insert_final_newline === false) {
      config.end_with_newline = false;
    if (eConfigs.end_of_line) {
      if (eConfigs.end_of_line === 'cr') {
        config.eol = '\r';
      } else if (eConfigs.end_of_line === 'lf') {
        config.eol = '\n';
      } else if (eConfigs.end_of_line === 'crlf') {
        config.eol = '\r\n';

Source

Also in JavaScript: