Skip to content
This repository was archived by the owner on May 2, 2020. It is now read-only.

Files

Latest commit

author
ScriptPilot
Dec 31, 2018
6e1b186 · Dec 31, 2018

History

History
25 lines (19 loc) · 633 Bytes

editorconfigFile.md

File metadata and controls

25 lines (19 loc) · 633 Bytes

Configure .editorconfig file

This page is part of the App Framework Documentation


The .editorconfig file will be updated automatically. You can configure it in the editorConfig item in the app/config.json file.

To write a line without value, for example [*], assign value null, else assign the value as string or number.

Example:

"editorConfig": {
  "root": "true",
  "[*]": null,
  "indent_style": "space",
  "indent_size": 2,
  "charset": "utf-8",
  "trim_trailing_whitespace": "true",
  "insert_final_newline": "true",
  "end_of_line": "lf",
  "max_line_length": "null"
}