npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@atixlabs/eslint-config

v1.2.3

Published

AtixLabs eslint rules for Node & ReactJS

Downloads

1,154

Readme

AtixLabs Eslint Config

This repository contains predefined (an opinionated) rules for AtixLabs eslint projects. Here you will be able to find presets for NodeJs and ReactJS (and obviously Javascript).

All the presets are based on other excellent projects with some minor tweaks to fit our needs. All our presets are defined using Eslint Shareable Configs

Full Screen

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

In order to setup the eslint rules in your project you need to use NodeJs v12+. Also you need to install our rules presets:

npm install -E @atixlabs/eslint-config

Once you have installed the package, there is a helper script that will help installing the required dependencies based on the projec type you are trying to configure. To do so, invoke it using:

npx atixlabs-eslint-config-install-deps

or

./node_modules/.bin/atixlabs-eslint-config-install-deps in case you don't have npx installed.

Configuring

Depending on the project you are running you will need to specify which rules you want to use. To do so, create an .eslintrc file with the following configs:

  • NodeJS
{
  "extends": "@atixlabs/eslint-config/configurations/node"
}
  • ReactJS
{
  "extends": "@atixlabs/eslint-config/configurations/react"
}

If your project contains multiple technologies, you can compose the configs, for example, if you have a NodeJs and React project, you can set:

{
  "extends": [
    "@atixlabs/eslint-config/configurations/react",
    "@atixlabs/eslint-config/configurations/node"
  ]
}

Customization

  • If you want to override any rule you an still do it by adding them in your project .eslintrc config file as you would normaly do.

How to test?

// TODO

Deployment

This package is published to npm registry under @atixlabs organization.

Built With

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the MIT License - see the LICENSE.md file for details