@futagoza/eslint-config
v16.1.0
Published
Futago-za Ryuu's default ESLint configuration
Downloads
2,110
Maintainers
Readme
This package contains configuration files for ESLint v7.15+
These is the default configuration for ESLint that I use in my JavaScript and/or TypeScript projects. It extends my other ESLint configurations to create a single unified configuration that can easily be used when working with:
- Node LTS release's
- TypeScript
- Test files
installation
$ npm i --save-dev @futagoza/eslint-config
usage
Put the following into your configuration (.eslintrc.json
file or the "eslintConfig" field in package.json
):
{
"extends": "@futagoza"
}
configurations
A list of usable configurations as well the configurations they use:
@futagoza
(extends @futagoza/ignore, @futagoza/node/10, @futagoza/typescript and @futagoza/dev/test)
If you are using this configuration via yarn install
(Yarn 1 only) then the following should be available as well:
@futagoza/core
@futagoza/dev
(extends @futagoza/globals, @futagoza/javascript and @futagoza/node)@futagoza/globals
@futagoza/ignore
@futagoza/javascript
(extends @futagoza/core and @futagoza/globals)@futagoza/node
(extends @futagoza/globals and @futagoza/javascript)@futagoza/typescript
(pulls in rule settings from @futagoza/core and @futagoza/javascript)
ignored patterns
This configuration includes @futagoza/ignore, which exports a set of file-path globs (mostly recursively) to ignore files using the ignorePatterns
property (a top-level configuration property for ESLint configuration files).
- See ignored patterns: @futagoza/eslint-config-ignore/index.js
- See documentation: eslint.org/docs/user-guide/configuring#ignoring-files-and-directories
license
Copyright © 2017+ Futago-za Ryuu Released under the MIT License, http://opensource.org/licenses/MIT