mirror of
https://github.com/foambubble/foam.git
synced 2026-04-24 03:01:01 -04:00
* added support for graph middleware via local plugin * added support for parsing extension points / plugins * improved parser plugin and added docs * improved name of parameter * need to enable local plugins, and improved configuration system For security reasons local plugins are off by default. The feature can be enabled via a flag in the foam configuration, which has been expanded to support this case. The configuration system now reads a `config.json` file inside the `.foam` directory as well as a `~/.foam/config.json` file to configure the system. Only the user specific configuration file can be used to enable local plugins, as a security measure against malicious repos. * added prettier configuration file This ensures consistency across machines as well as an explicit source of truth
7 lines
96 B
JavaScript
7 lines
96 B
JavaScript
module.exports = {
|
|
trailingComma: 'es5',
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: true,
|
|
};
|