Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 443 Bytes

Configuration.md

File metadata and controls

20 lines (17 loc) · 443 Bytes

CSharpier has support for a configuration file. You can use any of the following files

  • A .csharpierrc file in JSON or YAML.
  • A .csharpierrc.json or .csharpierrc.yaml file.

Configuration Options

JSON

{
   "printWidth": 100
}

YAML

printWidth: 100

Print Width

Specify at what point the printer will wrap content. This is not a hard limit. Some lines will be shorter or longer.

Default 100