blob: 33d32dc1cbe49ded9918d95a959c6f256f00d7c6 [file] [log] [blame] [view] [raw]
# Adding a new formatter
* Add a `etc/config/compiler-explorer.local.properties` file
- Add a new formatter under the `formatters` key
- The new formatter can have the following keys: name, exe, styles, type,
version (argument to get version info), versionRe (regex to filter out the right version info)
- Add a `lib/formatters/<formatter>.js` file using the template below, replacing `Type` and `type` as
appropriate
```js
import { BaseFormatter } from '../base-formatter';
export class TypeFormatter extends BaseFormatter {
static get key() { return 'type'; }
}
```
- The value returned by `key` above corresponds to the `type` property you set in the compiler-explorer properties
configuration file.
- Tweak `format(args, source)`, `getDefaultArguments()`, `getStyleArguments(style)` and `isValidStyle(style)` as
necessary
* Add your `TypeFormatter` to `lib/formatters/_all.js` in alphabetical order
* You can check the output of http://localhost:10240/api/formats to be sure your formatter is there.
* Make an installer in the [infra](https://github.com/compiler-explorer/infra) repository. An example patch for adding
an installer can be found [here](https://github.com/compiler-explorer/infra/pull/560)