GithubHelp home page GithubHelp logo

eslint-config-fmal's Introduction

eslint-config-fmal

Version npm BuildStatus

Usage

Common

npm i -D eslint eslint-config-fmal

Add to your .eslintrc

{
  "extends": "fmal"
}

Babel

To use the Babel rule set:

npm i -D eslint eslint-config-fmal @babel/eslint-parser

Add this to your .eslintrc:

{
  "extends": "fmal/babel"
}

Flow

To use the flow rule set:

npm i -D eslint eslint-config-fmal @babel/eslint-parser eslint-plugin-flowtype eslint-plugin-flowtype-errors

Add this to your .eslintrc:

{
  "extends": "fmal/flow"
}

TypeScript

To use the TypeScript rule set:

npm i -D eslint eslint-config-fmal @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-import-resolver-typescript

Add this to your .eslintrc:

{
  "extends": "fmal/typescript"
}

React

To use the React rule set:

npm i -D eslint eslint-config-fmal eslint-plugin-react eslint-plugin-react-hooks

Add this to your .eslintrc:

{
  "extends": "fmal/react"
}

Import

To use the eslint-plugin-import rule set:

npm i -D eslint eslint-config-fmal

Add this to your .eslintrc:

{
  "extends": "fmal/import"
}

Jest

To use the Jest rule set:

npm i -D eslint eslint-config-fmal eslint-plugin-jest

Add this to your .eslintrc:

{
  "extends": "fmal/jest"
}

Mocha

To use the Mocha rule set:

npm i -D eslint eslint-config-fmal

Add this to your .eslintrc:

{
  "extends": "fmal/mocha"
}

css-modules

To use the eslint-plugin-css-modules rule set:

npm i -D eslint eslint-config-fmal eslint-plugin-css-modules

Add this to your .eslintrc:

{
  "extends": "fmal/css-modules"
}

Composition

You can use any combination of these shareable configs.

Install the dependencies:

npm i -D eslint eslint-config-fmal @babel/eslint-parser @typescript-eslint/parser @typescript-eslint eslint-plugin eslint-import-resolver-typescript eslint-plugin-react eslint-plugin-jest eslint-plugin-css-modules

.eslintrc:

{
  "extends": [
    "fmal",
    "fmal/babel",
    "fmal/import",
    "fmal/typescript",
    "fmal/react",
    "fmal/jest",
    "fmal/css-modules"
  ],
  "rules": {
    // custom tweaks
  }
}

Patch

This shareable config uses rules from external plugins such as eslint-plugin-prettier. This patch improves how ESLint loads plugins when working for example in a monorepo, see: eslint/eslint#3458

.eslintrc.js

// Patch ESLint module resolution to find shared configs' plugins
require('eslint-config-fmal/patch/modern-module-resolution');

module.exports = {
  extends: ['fmal']
};

eslint-config-fmal's People

Contributors

fmal avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.