@svenpiller/eslint-plugin

0.0.1 • Public • Published

@svenpiller/eslint-plugin

npm version Downloads/month Build Status codecov Dependency Status

Additional ESLint rules and ESLint configurations for me.

💿 Installation

npm install --save-dev eslint @svenpiller/eslint-plugin

Requirements

  • Node.js ^6.5.0, ^8.0.0, ^9.0.0 or newer versions.
  • ESLint ^4.19.1 or newer versions.

📖 Usage

Write in your ESLint configurations: http://eslint.org/docs/user-guide/configuring#using-the-configuration-from-a-plugin

Configs

  • plugin:@svenpiller/es2019 ... Basic configuration for ES2019.
  • plugin:@svenpiller/es2018 ... Basic configuration for ES2018.
  • plugin:@svenpiller/es2017 ... Basic configuration for ES2017.
  • plugin:@svenpiller/es2016 ... Basic configuration for ES2016.
  • plugin:@svenpiller/es2015 ... Basic configuration for ES2015.
  • plugin:@svenpiller/es5 ... Basic configuration for ES5.
  • plugin:@svenpiller/+modules ... Additional configuration for ES modules.
  • plugin:@svenpiller/+browser ... Additional configuration for browser environment.
  • plugin:@svenpiller/+angular ... Additional configuration for angularJs browser environment.
  • plugin:@svenpiller/+node ... Additional configuration for Node.js environment.
  • plugin:@svenpiller/+eslint-plugin ... Additional configuration for ESLint plugins. This includes plugin:sven-piller/+node setting.

Details

The main configurations plugin:@svenpiller/es* does:

  • detect bug-like code by ESLint rules.
  • enforce whitespace style by Prettier.
  • handle the .ts files as TypeScript then check by typescript-eslint-parser and eslint-plugin-typescript.
  • handle the .vue files as Vue.js SFC then check by vue-eslint-parser and eslint-plugin-vue.
  • handle the files in test/tests directory as mocha'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:

For Node.js
{
    "extends": [
        "plugin:@svenpiller/es2015",
        "plugin:@svenpiller/+node"
    ]
}

It handles .js files as scripts and .mjs files as modules.

For Browsers
{
    "extends": [
        "plugin:@svenpiller/es2015",
        "plugin:@svenpiller/+browser"
    ]
}
For Browsers with ES modules
{
    "extends": [
        "plugin:@svenpiller/es2015",
        "plugin:@svenpiller/+modules",
        "plugin:@svenpiller/+browser"
    ]
}
For ESLint plugins
{
    "extends": [
        "plugin:@svenpiller/es2015",
        "plugin:@svenpiller/+eslint-plugin"
    ]
}

Rules

This plugin has some original rules and foreign rules.

Original rules

Foreign rules

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.

🚥 Semantic Versioning Policy

This plugin follows semantic versioning and ESLint's Semantic Versioning Policy.

📰 Changelog

❤️ Contributing

Welcome contributing!

Please use GitHub's Issues/PRs.

Development Tools

  • npm test runs tests and measures coverage.
  • npm run clean removes the coverage result of npm test command.
  • npm run coverage shows the coverage result of npm test command.
  • npm run update updates auto-generated files.
  • npm run watch runs tests and measures coverage when source code are changed.

Package Sidebar

Install

npm i @svenpiller/eslint-plugin

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

176 kB

Total Files

47

Last publish

Collaborators

  • svenpiller