Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

angular-hint-controllers

Package Overview
Dependencies
7
Maintainers
3
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    angular-hint-controllers

hint module for controllers best practices


Version published
Weekly downloads
0
decreased by-100%
Maintainers
3
Created
Weekly downloads
 

Readme

Source

Angular Hint Controllers Build Status Code Climate

This hinting module is part of the overall tool angular-hint that provides advice about AngularJS best practices. Loading this module will provide warnings specific to AngularJS controllers.

Usage

Install the angular-hint NPM module and use ng-hint or ng-hint-include="controllers" to enable angular-hint-controllers.

Further installation information is available on the main angular-hint repository.

Features

  1. Warns About Use of Global Controllers Global Controllers are Deprecated in Angular 1.3.0

Angular controllers should not be globally registered. They should be registered on modules. For instance:

angular.module('myApp', []).controller(function() {});
  1. Hints About Best Practices for Controller Naming

Angular controller names should begin with a capital letter and end with -Controller.

angular.module('sampleApp', []).controller('SampleController', function() {});

Contributing

We'd love to get your help! See the Contributing Guidelines to see how.

License

Apache 2.0

FAQs

Last updated on 11 Dec 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc