Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Handles global data for the whole plugin.

File system layout

Versioning

To version: everything.

Contribute

Data management

Handle data management for the plugin.

Related to the concept of stores (of data), or global data (something perceived bad).

At least, there should be something available to manage data, share it for the whole plugin, a kind of central hub.

This might be used essentially for configuration, and user preferences.

Preference page

Implement a preferences page, to enable the end user configuring the whole plugin.

At least build the scaffolding, a placeholder for GUI components the user will have access to to configure the plugin.

To find what can be configurable, you can browse multiple things in this plugin project:

  • packages specific documentations, telling about some chosen values or behavior that might change
  • source code, notably with constants - most of them being extracted to private static properties
  • ...