Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@diesdasdigital/linting

Package Overview
Dependencies
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@diesdasdigital/linting

Stylelint config default for Diesdas internal projects

  • 2.0.5
  • latest
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@diesdasdigital/linting

A reusable set of linting rules for use with any Diesdas internal project which uses Stylelint and/or Eslint.

Getting Started

Install @diesdasdigital/linting, stylelint and eslint to your project.

yarn add --dev @diesdasdigital/linting stylelint eslint

Create a new stylelint.config.js file at the root of your project, which extends @diesdasdigital/linting/stylelint-config.

// stylelint.config.js

module.exports = {
  extends: "@diesdasdigital/linting/stylelint-config",
  rules: {
    // Your project-specific rules and overrides go here
  },
};

Create a new .eslintrc.js file at the root of your project, which extends @diesdasdigital/linting/eslint-config.

// .eslintrc.js

module.exports = {
  extends: ["./node_modules/@diesdasdigital/linting/eslint-config"],
  rules: {
    // Your project-specific rules and overrides go here
  },
};

You're done!

Package Maintenance

Releasing a new version

This project uses the npm-publish-action to automatically publish new releases to NPM and tag them on Github. To trigger a new release, then commit a change to the version number in package.json with the commit message Release x.x.x (but replace x.x.x with the new version number). Push the commit to origin/main and then view the status of the automated release here.

FAQs

Package last updated on 09 Nov 2021

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