New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@lou.codes/configs

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lou.codes/configs

⚙️ Project configurations

latest
Source
npmnpm
Version
5.1.6
Version published
Maintainers
1
Created
Source

License NPM Version Open Issues

⚙️ Shared project configuration files for linting, formatting, documentation and so on.

Configurations

  • 🦋 changelog.cjs — Changesets changelog functions.
  • 🚨 eslint.config.js — JavaScript and TypeScript linting.
  • prettier.config.js — Code formatting.
  • 🎨 stylelint.config.js — CSS linting.
  • 🏷️ typescript.config.json — TypeScript configuration (strict).
  • 📖 typedoc.config.json — Documentation configuration.

Usage

All this configurations are setup automatically by @lou.codes/create-package when creating a new package.

For manual setup of each file, use the examples below:

// .changeset/config.json
{
	"$schema": "https://raw.githubusercontent.com/changesets/changesets/main/packages/config/schema.json",
	"changelog": "@lou.codes/configs/changelog.cjs",
	"commit": false,
	"access": "restricted",
	"baseBranch": "main",
	"updateInternalDependencies": "patch"
}
// eslint.config.js
export { default } from "@lou.codes/configs/eslint.config.js";
// prettier.config.js
export { default } from "@lou.codes/configs/prettier.config.js";
// stylelint.config.js
export { default } from "@lou.codes/configs/stylelint.config.js";
// tsconfig.json
{
	"extends": "@lou.codes/configs/typescript.config.json"
}
// typedoc.json
{
	"$schema": "https://typedoc.org/schema.json",
	"cname": "PUBLIC DOMAIN",
	"entryPoints": ["./lib"],
	"extends": ["@lou.codes/configs/typedoc.config.json"],
	"name": "PACKAGE NAME"
}
  • Changelog: List of changes between versions.

Keywords

config

FAQs

Package last updated on 02 Jan 2025

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