2.0.2 • Published 5 months ago

@windyroad/xo-config v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@windyroad/xo-config

This package provides a shareable configurations for:

It provides a consistent and opinionated set of rules for JavaScript and TypeScript projects.

Installation

To use this configuration in your project, you can install it via npm:

npm install --save-dev @windyroad/xo-config

Usage

XO

To use this configuration in your project, you can add it to your package.json file:

{
  "xo": "@windyroad/xo-config"
}

Alternatively, you can create an .xo-config.js file in the root of your project and export the configuration:

'use strict';
const config = require("@windyroad/xo-config")
module.exports = config

markdownlint-cli2

If you're using markdownlint-cli2, you can also use the shared configuration provided by this package. To use it, create a .markdownlint-cli2.cjs file in the root of your project and export the configuration:

'use strict';
const config = require("@windyroad/xo-config/src/markdownlint-cli2.cjs")
module.exports = config

Configuration

This configuration extends the recommended TypeScript flavour error configuration from the eslint-config-xo-typescript package. It also includes the following plugins:

The configuration also includes the following rules:

  • no-secrets/no-secrets: Enforces the use of detect-secrets to prevent secrets from being committed to version control.
  • jsdoc/no-undefined-types: Disables the requirement to define types for JSDoc comments.
  • jsdoc/require-param-type: Disables the requirement to define types for JSDoc parameters.
  • jsdoc/require-returns-type: Disables the requirement to define a return type for JSDoc comments.

Contributing

Contributions are welcome! Please read the contributing guidelines for more information.

License

@windyroad/xo-config is lovingly licensed under the MIT License. ❤️

2.0.2

5 months ago

2.0.1

6 months ago

2.0.0

9 months ago

1.3.1

9 months ago

1.3.0

9 months ago

1.2.0

10 months ago

1.1.0

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago