eslint-config-altheajs
Althea Web Service's eslint
configuration.
You can view this package on NPM: click here
This package supports the following by default out of the box:
eslint-config-airbnb
- React with hooks supporteslint-config-prettier
- Prettier support. Prettier configs will override the ESLint rules associated with style choices. In other words, Pretter > ESLint
.eslint-plugin-vue
- Vue support
This package also has the option for supporting TypeScript projects as well:
eslint-config-airbnb-typescript
- React with hooks support- Everything else above!
Installation
npm
npm install --save-dev eslint-config-altheajs
yarn
yarn add --dev eslint-config-altheajs
Usage
Configuration
The simplest way to install and use the default config is to reference it directly in your package.json
file as follows:
{
"eslintConfig": {
"extends" : ["altheajs"]
}
}
If you'd like to extend the configurations, create a .eslintrc.js
file at the root of your project that contains the following:
module.exports = {
"extends": ["altheajs"],
"parserOptions": { "project": "./tsconfig.json" }
};
TypeScript Usage
If you're using a typescript project, you can use the exported TypeScript ESLint configuration.
{
"eslintConfig": {
"extends": ["altheajs/typescript"]
}
}
Usage with Prettier
Since this package already bundles the eslint-config-prettier
package under the hood, there is no need to install the dependency yourself. You can use your Prettier config as you would normally in your project, and ESLint will prefer Prettier for style changes over its own.
NPM Scripts Command
You can add in an npm script to your package.json
which will apply lint rules across all the file patterns specified. Simply add the following to apply to all files:
{
"scripts": {
"lint:quality": "npx eslint -c .eslintrc.js . --ext .js,.jsx,.ts,.tsx"
"fix:quality": "npx eslint -c .eslintrc.js . --ext .js,.jsx,.ts,.tsx --fix",
}
}
Visual Studio Code
-
Install ESLint extension: View → Extensions
then find and install the ESLint extension.
-
Reload the editor.
-
In your user settings Code -> Preferences -> Settings
add the following settings:
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Enforced Rules
Check out all of ESlint's configuration options.