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

eslint-config-kam

v3.1.1

Published

KAM Javascript & Typescript standards (ESLint & Prettier)

Downloads

25

Readme

KAM Javascript & Typescript standards (ESLint & Prettier)

Package to unify ESLint & Prettier versions and rules across projects. No need to install those packages anymore in your projects and maintain them all separately.

This package will provide you with eslint and Prettier and with the rules we follow at KAM.

Install

npm install -D eslint-config-kam

or

yarn add -D eslint-config-kam

Configure

  1. Create the file .eslintrc.js in your root folder and extend kam rules

    module.exports = {
        extends: 'eslint-config-kam',
    };
  2. Create the file .prettierrc.js in your root folder and extend kam rules

    module.exports = require('eslint-config-kam/.prettierrc.js');

Note: You can extend or modify this rules in your project as is described on the documentation of eslint, the same way as you will do when extending eslint recommended rules.

Usage

Like you will do normally with eslint, this package is nothing else but a wrapper.

  • For just linting and showing the report, run:
eslint path/to/folder

Note: The path can be a glob

  • For linting and autofix the problems, run:
eslint --fix path/to/folder
  • For linting also Typescript files, run:
eslint --ext ".js, .ts" path/to/folder

Note: The path can be a glob

Recommended

Add in your package.json at the scripts section the two following scripts:

{
    "scripts": {
        "eslint": "eslint --ext \".js, .ts\" path/to/folder",
        "eslint:fix": "eslint --ext \".js, .ts\" --fix path/to/folder"
    }
}

Configure your IDE to use eslint with this rules so you don't need to be running the scripts while developing.

For Prettier you have different options, depending on the IDE you can use a watcher, or manually run it for a file. We recommend to run linter tasks with a git hook, check how Husky works together with lint-staged.

KAM rules

Rules

Update the package

To update this package when a new version is ready, run:

npm update eslint-config-kam

or

yarn upgrade eslint-config-kam

Changelog

Changelog

Contributing

contributions welcome

Please remember to increment the version on package.json following the SemVer specification.

  1. Create a new branch from master following the next pattern:

    feature/[TICKET-NUM-]short-description

    Example: feature/KAM-123-add-rule-foobar

    Note: If there is no ticket then just do feature/add-rule-foobar

  2. Create a PR agains master. You will need to have at least one approval.

  3. When merging the PR to master, a Bitbucket pipeline will generate a new tag and push it. This tag number corresponds to the version npm uses to install/update the package (version in package.json). If the tag is created correctly, it will be automatically publish to the npm registry.

License

This software is licensed under the terms of the MIT license. See LICENSE.md for the full license.