UNPKG

@ws-frontend/eslint-plugin-angular

Version:

WS Frontend Angular ESLint Rules

24 lines (20 loc) 577 B
/** * @license * Copyright Trilogy Enterprises, Inc (WS Frontend) - All Rights Reserved. * * This file is part of Rapid Engineering QC project. * Unauthorized copying of this file, via any medium is strictly prohibited - Proprietary and confidential */ 'use strict'; const RULE = require('eslint/lib/rules/no-console'); const RP_CONF = { meta: { docs: { description: 'Console logs are removed', }, messages: { unexpected: 'Unexpected console statement.', }, }, }; module.exports = {...RULE, ...RP_CONF};