eslint-config-prev v7.0.0
ESLint shareable config for ES2015+
Translations: Korean
Install
$ npm install --save-dev eslint eslint-config-prevUsage
Add extends field to your ESLint config (if you haven't created, create one):
.eslintrc.yml:
extends: prevOr if you prefer package.json:
{
"eslintConfig": {
"extends": "prev"
}
}Available configs
Every config provided by this sharable config have ECMAScript modules support and esnext features by default.
prev: The basic config for common JavaScript projects. This config is assuming you are innodeenvironment (e.g.nodejs,webpack, ...).prev/react: The config for React projects with support for React and JSX.prev/native: The config for ReactNative projects with support for React and JSX.
If you are on browser environment, you may need to add browser option to env field:
env:
browser: trueAdvanced usage
Globals
Whenever you need to use global variables for some case (e.g. refering external library), you can add them to your config to let ESLint recognize that variables are populated in global:
globals:
$: falseYou can specify the variable name with boolean value as a property of globals object in the config. Specifying true will allow the variable to be overwritten in the code or false to disallow overwriting.
Using script source type
Every config enables modules syntax by default. Add next to config if you want to disable it:
parserOptions:
sourceType: scriptUsing ES5 instead of ES2015+
This is not generally recommended, you can fallback to ES5 by adding next to your config if you need. This will change environment to ES5:
env:
es6: false
parserOptions:
ecmaVersion: 5Note: However, ESLint might still show you error or warning since this sharable config is created in mind that you are in ES2015+ environment. In this case, you can safely disable the rule manually.
Composing configs
By default, the top-level configs described above enforce you to use ECMAScript modules and esnext features via Babel.
If you don't want to be enforced by this rule to use them, you can choose what you just need and compose your own rules from rules directory:
.eslintrc.yml:
extends:
- prev/rules/base
- prev/rules/reactpackage.json:
{
"eslintConfig": {
"extends": [
"prev/rules/base",
"prev/rules/react"
]
}
}Electron
If you are on Electron environment, you may need to add electron module to core-modules. So that eslint-import-plugin can consider the electron module as a core module like path:
settings:
import/core-modules: electronYou can find more details about ESLint configuration here.
Badge
If you loved this config, please consider to add this fancy badge to your awesome project!
[](https://github.com/preco21/eslint-config-prev)License
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
