Additional ESLint rules and ESLint configurations for @mysticatea.
npm install --save-dev eslint @eslint-community/eslint-plugin-mysticatea
- Node.js
^12.22.0 || ^14.17.0 || >=16.0.0
or newer versions. - ESLint
^6.6.0 || ^7.0.0 || ^8.0.0
or newer versions.
Write in your ESLint configurations: http://eslint.org/docs/user-guide/configuring#using-the-configuration-from-a-plugin
-
plugin:nahoc-eslint/es2022
... Basic configuration for ES2022. -
plugin:nahoc-eslint/es2021
... Basic configuration for ES2021. -
plugin:nahoc-eslint/es2020
... Basic configuration for ES2020. -
plugin:nahoc-eslint/es2019
... Basic configuration for ES2019. -
plugin:nahoc-eslint/es2018
... Basic configuration for ES2018. -
plugin:nahoc-eslint/es2017
... Basic configuration for ES2017. -
plugin:nahoc-eslint/es2016
... Basic configuration for ES2016. -
plugin:nahoc-eslint/es2015
... Basic configuration for ES2015. -
plugin:nahoc-eslint/es5
... Basic configuration for ES5. -
plugin:nahoc-eslint/+modules
... Additional configuration for ES modules. -
plugin:nahoc-eslint/+browser
... Additional configuration for browser environment. -
plugin:nahoc-eslint/+node
... Additional configuration for Node.js environment. -
plugin:nahoc-eslint/+eslint-plugin
... Additional configuration for ESLint plugins. This includesplugin:nahoc-eslint/+node
setting.
The main configurations plugin:nahoc-eslint/es*
does:
- detect bug-like code by ESLint rules.
- enforce whitespace style by Prettier.
- handle the
.ts
files as TypeScript then check bytypescript-eslint-parser
andeslint-plugin-typescript
. - handle the
.vue
files as Vue.js SFC then check byvue-eslint-parser
andeslint-plugin-vue
. - handle the files in
test
/tests
directory asmocha
's test code. - handle the files in
scripts
directory as Node.js environment. - handle the
.eslintrc.js
file as a Node.js script. - handle the
webpack.config.js
file as a Node.js script. - handle the
rollup.config.js
file as an ES module.
You can use combination of a main configuration and some additional configurations. For examples:
{
"extends": ["plugin:nahoc-eslint/es2015", "plugin:nahoc-eslint/+node"]
}
It handles
.js
files as scripts and.mjs
files as modules.
{
"extends": ["plugin:nahoc-eslint/es2015", "plugin:nahoc-eslint/+browser"]
}
{
"extends": [
"plugin:nahoc-eslint/es2015",
"plugin:nahoc-eslint/+modules",
"plugin:nahoc-eslint/+browser"
]
}
{
"extends": [
"plugin:nahoc-eslint/es2015",
"plugin:nahoc-eslint/+eslint-plugin"
]
}
This plugin has some original rules and foreign rules.
- nahoc-eslint/arrow-parens enforces parens of argument lists (excludes too redundant parens) (fixable).
-
nahoc-eslint/block-scoped-var handles variables which are declared by
var
declaration as block-scoped. It disallows redeclarations, uses from outside of the scope, shadowing. - nahoc-eslint/no-instanceof-array disallows 'instanceof' for Array (fixable).
- nahoc-eslint/no-instanceof-wrapper disallows 'instanceof' for wrapper objects (fixable).
- nahoc-eslint/no-literal-call disallows a call of a literal.
-
nahoc-eslint/no-this-in-static disallows
this
/super
in static methods. - nahoc-eslint/no-use-ignored-vars disallows a use of ignored variables.
- nahoc-eslint/no-useless-rest-spread disallows unnecessary rest/spread operators (fixable).
-
nahoc-eslint/prefer-for-of requires
for-of
statements instead ofArray#forEach
or something like (fixable).
- All
nahoc-eslint/eslint-comments/*
rules are imported from eslint-plugin-eslint-comments. - All
nahoc-eslint/eslint-plugin/*
rules are imported from eslint-plugin-eslint-plugin. - All
nahoc-eslint/node/*
rules are imported from eslint-plugin-node. - All
nahoc-eslint/ts/*
rules are imported from eslint-plugin-typescript. - All
nahoc-eslint/vue/*
rules are imported from eslint-plugin-vue. - The
nahoc-eslint/prettier
rule is imported from eslint-plugin-prettier.
Q: Why don't you use those plugins directly?
> A: The combination with shareable configs and plugins has some problems because shareable configs were not designed to be used with plugins. @nzakas illustrated a way to use plugins as shareable configs together with other plugins in the discussion eslint/eslint#3458. This is the way.
This plugin follows semantic versioning and ESLint's Semantic Versioning Policy.
Welcome contributing!
Please use GitHub's Issues/PRs.
-
npm test
runs tests and measures coverage. -
npm run clean
removes the coverage result ofnpm test
command. -
npm run coverage
shows the coverage result ofnpm test
command. -
npm run update
updates auto-generated files. -
npm run watch
runs tests and measures coverage when source code are changed.