@windyroad/eslint-config
v4.0.0
Published
Lint configuration for the Windy Road style
Downloads
106
Maintainers
Readme
@windyroad/eslint-config
This package provides a shareable configurations for:
- ESLint, which is a wrapper around ESLint, and
- XO, which is a wrapper around ESLint, and
- markdownlint-cli2
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/eslint-config
Usage
XO
To use this configuration in your project, you can add it to your package.json
file:
{
"xo": "@windyroad/eslint-config/xo-config.cjs"
}
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/eslint-config/xo-config.cjs")
module.exports = config
Extending
You can also extend the shared configuration by creating an .xo-config.js
file in the root of
your project and export the configuration as follows:
'use strict';
const config = require("@windyroad/eslint-config/xo-config.cjs")
module.exports = {
...config
extends: ["@windyroad", 'some-other-shareable-configuration']
}
ESLint
Add ESLint config to your package.json
:
"eslintConfig": {
"extends": [
"@windyroad",
]
}
Or to .eslintrc:
{
"extends": [
"@windyroad",
]
}
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/eslint-config/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 ofdetect-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/eslint-config
is lovingly licensed under the MIT License. ❤️