StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/vue-numeric/.github/CONTRIBUTING.md

1.4 KiB

Contributing guidelines

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Proposing a change

If you intend to change the public API, or make any non-trivial changes to the implementation, we recommend filing an issue. This lets us reach an agreement on your proposal before you put significant effort into it.

Javascript style guides

DocBlock

Every function, methods, computed properties, props should have a docblock to explain what it does

example:

    /**
     * Check provided value againts maximum allowed.
     * @param {Number} value
     * @return {Boolean}
     */
    checkMaxValue (value) {
      if (this.max) {
        if (value <= this.maxValue) return false
        return true
      }
      return false
    },

Test

  • Make sure current tests is all green
  • If you've added code that should be tested, add tests!
  • Any new feature or changes should include tests for it.
  • Make sure code coverage % does not decrease.

Readme

Update the README.md with details of changes.