angular-eslint VS lint-staged

Compare angular-eslint vs lint-staged and see what are their differences.

angular-eslint

:sparkles: Monorepo for all the tooling related to using ESLint with Angular (by angular-eslint)

lint-staged

🚫💩 — Run linters on git staged files (by lint-staged)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
angular-eslint lint-staged
22 50
1,563 12,885
0.6% 0.9%
9.4 8.2
5 days ago 4 days ago
TypeScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

angular-eslint

Posts with mentions or reviews of angular-eslint. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-13.
  • Lint rule for self-closing tags in Angular
    2 projects | dev.to | 13 Nov 2023
    Until I recently discovered that angular-eslint had added a new lint rule in v16.2 called prefer-self-closing-tags that can be used to enforce this syntax partially or throughout a project.
  • How to create service call to get users
    1 project | /r/Angular2 | 7 Jun 2023
  • Angular 16 Unveiled: Discover the Top 7 Features
    3 projects | /r/Angular2 | 29 May 2023
    We are also using angular-eslint which now supports 16.0.3 so that was painless.
  • Angular Universal SSR ESLint rules?
    2 projects | /r/Angular2 | 3 May 2023
    Along the lines of Angular ESLint, are there any packages that provide ESLint rules around writing SSR friendly code?
  • npx storybook init does not work properly? It installs react and react-dom, also the components are full of errors?! Am I doing something wrong?
    3 projects | /r/Angular2 | 1 May 2023
    { "root": true, "ignorePatterns": ["projects/**/*"], "rules": { "prettier/prettier": [ "error", { "endOfLine": "auto" } ] }, "overrides": [ { // TODO: find a way to apply rules on all files ending with .ts except for files ending with .stories.ts "files": ["*.ts"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@angular-eslint/recommended", "plugin:@angular-eslint/template/process-inline-templates", "plugin:prettier/recommended" ], "rules": { // https://github.com/angular-eslint/angular-eslint/tree/main/packages/eslint-plugin/docs/rules "@angular-eslint/directive-selector": [ "error", { "type": "attribute", "prefix": "hv", "style": "camelCase" } ], "@angular-eslint/component-selector": [ "error", { "type": "element", "prefix": "hv", "style": "kebab-case" } ], // https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin/docs/rules "@typescript-eslint/member-ordering": "error", "@typescript-eslint/naming-convention": "error", // https://eslint.org/docs/latest/rules/ "default-case": "error", "default-case-last": "error" } }, { "files": ["*.html"], "extends": [ "plugin:@angular-eslint/template/recommended", "plugin:prettier/recommended" ], "rules": { // https://github.com/angular-eslint/angular-eslint/tree/main/packages/eslint-plugin-template/docs/rules "@angular-eslint/template/no-duplicate-attributes": ["error"], "@angular-eslint/template/attributes-order": ["error"], "@angular-eslint/template/no-call-expression": [ "error" ], "@angular-eslint/template/accessibility-elements-content": [ "error", { "allowList": [ "ariaLabel" ] } ], "@angular-eslint/template/accessibility-valid-aria": [ "error" ] } }, { "files": ["*.stories.@(ts|mjs|cjs)"], "extends": ["plugin:storybook/recommended"] // https://github.com/storybookjs/eslint-plugin-storybook/tree/main/docs/rules // "rules": {} } ] }
  • Personal Angular Best Practices
    3 projects | /r/Angular2 | 24 Oct 2022
    I don't think it's crazy, but these things improved my code quality a lot: * Use Prettier, an opinionated code formatter. It formats your code, no configuration, no fights with your colleagues. * Use eslint and SonarLint. They help you find bugs before you even commit your code. * Try to achieve a very high code coverage. Not every line needs to be covered, but I personally feel better if I've got 90+% coverage. It's not that hard once you include it in your coding-DNA. * Setup your IDE to properly debug your code. Don't do console.log(), use debugger; statements or real conditional breakpoints. Nothing sucks more than not being able to find out what your code really does. * Learn the ES6 and later features. Many developers tend to code in old ways (as they are used to), but JavaScript can do so much more these days. You'll save a lot of time and effort applying these new features. Start with Arrow Functions, followed by Rest and Spread operator, Property Shorthand and * Destructuring . Also note that there are some awesome new datastructures like Map and Set. * Learn TypeScript and keep yourself up to date. There are so many anti-patterns (never ever use any) that degregate your fancy, strictly typed highlevel code to buggy ES-code. It also helps a lot to reduce DRY and boilerplate. * Learn rxjs and use it on a daily base. Angular itself is really reactive as most Angular services return Observables that can be further processed with rxjs. Once your mind made the switch, you won't really use regular Events and/or loops anymore. But be aware of how to properly test your rxjs pipelines. * If you are integrating a remote API, I have very good experiences with OpenAPI and it's code generator for Angular. You will get ready-to-use interfaces and services just from an OpenAPI specification (which you get as a gift for many of the modern backend frameworks). Saves a lot of time and boilerplate code and removes the need to test and debug API-layer code. Your build will break as soon as the API introduces a breaking change, which is exactly what you want (it's too late if your app breaks on production)
  • Angular ESLint Rules for Keyboard Accessibility
    1 project | dev.to | 14 Oct 2022
    If you're not already using Angular ESLint, you can add it to an Angular project by running the schematic:
  • Adding the ESLint to an Angular application
    7 projects | dev.to | 12 Oct 2022
    ng add @angular-eslint/schematics ℹ Using package manager: npm ✔ Found compatible package version: @angular-eslint/[email protected]. ✔ Package information loaded. The package @angular-eslint/[email protected] will be installed and executed. Would you like to proceed? Yes ✔ Packages successfully installed. All @angular-eslint dependencies have been successfully installed 🎉 Please see https://github.com/angular-eslint/angular-eslint for how to add ESLint configuration to your project. We detected that you have a single project in your workspace and no existing linter wired up, so we are configuring ESLint for you automatically. Please see https://github.com/angular-eslint/angular-eslint for more information. CREATE .eslintrc.json (984 bytes) UPDATE package.json (1511 bytes) UPDATE angular.json (3447 bytes) ✔ Packages installed successfully.
  • Getting started with Husky and Lint-staged for pre-commit hooks
    4 projects | dev.to | 18 Apr 2022
    We need two tools to get the job done. The first tool that we need is a pre-commit tool that runs for every git-commit action: Husky. The second tool that is needed is lint-staged, which will run specified scripts on matching staged files. Aside from these tools, we need a code repository with actual linting tools. We will be using an Angular project as an example with the Angular ESLint and Prettier pre-configured.
  • Angular: Migrate from TSLint to ESLint
    2 projects | dev.to | 6 Apr 2022
    You can find all necessary tools and information to simplify the migration of existing Angular projects to ESLint at the GitHub Repo Angular ESLint.

lint-staged

Posts with mentions or reviews of lint-staged. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-06.
  • How Automation Saved Me from Oops Moments: Never Skip Tests in Production Again!
    2 projects | dev.to | 6 Feb 2024
    We were already using lint-staged and have a pre-commit hook in place using Husky in our project for linter and prettier. So it made sense to add a check here.
  • Pre-commit with husky & lint-staged
    2 projects | dev.to | 24 Jan 2024
    Now you can config it in your package.json, here is the guide doc:
  • Automating code patterns with Husky
    3 projects | dev.to | 2 Nov 2023
    In the world of software development, maintaining consistent code quality and ensuring that the codebase adheres to predefined patterns and guidelines is crucial. However, manually enforcing these standards can be time-consuming and error-prone. This is where automation tools like Husky, Lint-Staged, Commitlint, and Commitizen come to the rescue. In this post, we will explore how these tools can be combined to streamline your development workflow.
  • 500 lines in 2013 is 10k in 2023, inflation you know
    1 project | /r/ProgrammerHumor | 29 Apr 2023
    This is wasted work that can and should be automated. Adding a linter and formatter on CI and a pre-commit hook such as lint-staged can do wonders.
  • Set up linting and formatting for code and (S)CSS files in a Next.js project
    6 projects | dev.to | 26 Apr 2023
    lint-staged is a package that can be used to run formatting and linting commands on staged files in a Git repo.
  • How do you handle eslint/prettier configs across multiple repos?
    9 projects | /r/typescript | 14 Apr 2023
    To answer your next question: I lint and format on save, and I use Git hooks installed by Husky and executed through Lint-Staged (this tool helps ensure your Git hooks only run on modified files, etc) to ensure there are no lint or formatting errors whenever making a commit or pushing code. This is helpful for teams, as some developers tend to forget to run lint tasks, or don't have the Prettier extension installed in their IDE. If there are lint errors, the commit is rejected until fixed. YMMV - you'll need to fine-tune the strictness of this based on the team's needs.
  • How to create and publish a TypeScript library with ease
    7 projects | dev.to | 7 Mar 2023
    Uses Husky Git hooks and Lint-staged pre-commit hooks.
  • How to Contribute on the First Day of a Frontend Project
    5 projects | dev.to | 4 Jan 2023
    Something else to consider is applying linting and formatting before every git commit. A package like Lint-staged only lints and formats on staged items, ensuring all pushed code follows the standards in the repo. This allows developers to have their own formatting preferences when developing, while the code homogenizes on push. Linting pre-commit also avoids strict rules like no-console or no-unused-vars restricting a developer when writing code, when it should only apply in production. Imagine not being able to console log anything during development!
  • Commit Like a PRO
    3 projects | dev.to | 11 Nov 2022
    Lint-Staged Docs
  • How to beautify your code and make contributions easy?
    3 projects | dev.to | 8 Nov 2022
    Additionally, there are pre-commit hooks which can be setup to seamlessly validate and modify the source code before every commit. I followed Prettier documentation to create one. I ran npx mrm@2 lint-staged which installed husky and lint-stagedand added a configuration to the project’s package.json. Then, I modified the commands a little and that's it.

What are some alternatives?

When comparing angular-eslint and lint-staged you can also consider the following projects:

typescript-eslint - :sparkles: Monorepo for all the tooling which enables ESLint to support TypeScript

commitlint - 📓 Lint commit messages

rushstack - Monorepo for tools developed by the Rush Stack community

Nest - A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript 🚀

mockoon - Mockoon is the easiest and quickest way to run mock APIs locally. No remote deployment, no account required, open source.

stylelint - A mighty CSS linter that helps you avoid errors and enforce conventions.

angular-eslint - Application example built with Angular 14 and adding the ESLint using @angular-eslint/schematics library.

prettier - Prettier is an opinionated code formatter.

graphql-code-generator - A tool for generating code based on a GraphQL schema and GraphQL operations (query/mutation/subscription), with flexible support for custom plugins.

eslint-plugin-storybook - 🎗Official ESLint plugin for Storybook

volar - âš¡ Explore high-performance tooling for Vue [Moved to: https://github.com/vuejs/language-tools]