Socket
Socket
Sign inDemoInstall

codelyzer

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codelyzer

Linting for Angular applications, following angular.io/styleguide.


Version published
Weekly downloads
625K
increased by2.53%
Maintainers
1
Weekly downloads
 
Created

What is codelyzer?

Codelyzer is a static analysis tool for Angular projects that helps developers follow best practices and coding standards. It integrates with TSLint to provide a set of rules specific to Angular applications.

What are codelyzer's main functionalities?

Template Accessibility

Codelyzer can check for accessibility issues in Angular templates, such as ensuring that interactive elements are accessible to screen readers.

<button (click)="doSomething()">Click me</button>

Component Class Style

Codelyzer enforces consistent coding styles in Angular component classes, such as proper use of dependency injection and class member ordering.

class MyComponent { constructor(private myService: MyService) {} }

Template Syntax

Codelyzer checks for correct usage of Angular template syntax, ensuring that structural directives like *ngIf and *ngFor are used properly.

<div *ngIf="isVisible">Content</div>

Lifecycle Hooks

Codelyzer ensures that Angular lifecycle hooks are implemented correctly and follow best practices.

class MyComponent implements OnInit { ngOnInit() { console.log('Initialized'); } }

Other packages similar to codelyzer

Keywords

FAQs

Package last updated on 18 Dec 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc