lacymorrow/crossover

View on GitHub
src/config/exit-codes.js

Summary

Maintainability
A
0 mins
Test Coverage
const SUCCESS = 0
const GENERAL_ERROR = 1
const VALIDATION_ERROR = 2
const CANCELLED = 3

const EXIT_CODES = {
    SUCCESS,
    GENERAL_ERROR,
    VALIDATION_ERROR,
    CANCELLED,
}

module.exports = EXIT_CODES