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

@sngular/eslint-config

v1.0.1

Published

SNGULAR's JS config, following our styleguide

Downloads

75

Readme

@sngular/eslint-config

Sharable eslint config enforcing SNGULAR style guidelines. Uses:

Getting started

npm install --save-dev @sngular/eslint-config
echo "module.exports = { extends: ['@sngular/eslint-config'] };" > .eslintrc.cjs

If you want to use extend the config with other tools like prettier, jsdoc or type information, you can take a look at Configurations section.

Once you have it installed and configured you can add the following script into your package.json:

{
	"scripts": {
		"lint": "npm run lint:eslint",
		"lint:eslint": "eslint .",
		"format": "npm run format:eslint",
		"format:eslint": "npm run lint:eslint -- --fix"
	}
}

Now you can run npm run format for formatting all your project code or npm run lint to check project code formatting.

VSCode recommendation

If you prefer to automate ESLint fix execution, you can add this configuration to your VSCode settings.json, and it will be executed every time you save a file.

"editor.codeActionsOnSave": {
  "source.fixAll.eslint": true
},

Configurations

Default

The default configuration is the one that you can see at index.cjs. It expect to be used in a source type module, and override environment to commonjs for files with .cjs extension. And a specific import/order rule for the plugin:import.

Import order

It will split imports in 3 groups:

  • External imports
  • Internal imports
  • Type imports

Indent

We decide to use tabs instead of spaces that recommends eslint.

Reasons:

  • logical: that's what they're used for.
  • file size: tab is just 1 character.
  • accessibility: you can customize your own indentation width.

Prettier

If you want to use prettier with eslint you need to add this configuration to your .eslintrc.cjs file:

module.exports = { extends: ['@sngular/eslint-config', '@sngular/eslint-config/prettier.cjs'] };

The prettier config must be the last one in the extends array, because it overrides some conflicting ESLint formatting rules.

JSDoc

If you want to use jsdoc with eslint you need to add this configuration to your .eslintrc.cjs file:

module.exports = { extends: ['@sngular/eslint-config', '@sngular/eslint-config/jsdoc.cjs'] };

Type Information

If you want to work with types using typescript or jsdoc with eslint you need to add this configuration to your .eslintrc.cjs file:

module.exports = { extends: ['@sngular/eslint-config', '@sngular/eslint-config/type-information.cjs'] };

Additionally, you will need tsconfig.json files, that you can find in the package @sngular/tsconfig. Eslint types configuration will use the tsconfig.json file. If you need to use different configuration take a look Linting with Type Information.

All together

If you want to use all together you need to add this configuration to your .eslintrc.cjs file:

module.exports = {
	extends: [
		'@sngular/eslint-config',
		'@sngular/eslint-config/type-information.cjs',
		'@sngular/eslint-config/jsdoc.cjs',
		'@sngular/eslint-config/prettier.cjs',
	],
};

If you are planning to include into an existing project, we recommend to include them one by one to solve the linting errors step by step. The recommended include order is:

  1. @sngular/eslint-config
  2. @sngular/eslint-config/prettier.cjs
  3. @sngular/eslint-config/jsdoc.cjs
  4. @sngular/eslint-config/type-information.cjs

This will help you to lint your code and fix the errors easily.