3.0.2 • Published 9 days ago

eslint-config-shiny v3.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 days ago

eslint-config-shiny

NPM license NPM version NPM downloads

Make your code so clean and polished that it shines! :sparkles:

eslint-config-shiny is a sophisticated configuration tool to create the most optimal eslint experience by doing all the heavy work for you! Just say what framework and for what purpose you want to use it and eslint-config-shiny will do the rest for you.

As of now, it does not work with eslint 9 as most plugins haven't updated yet. Please stay with eslint 8.57.0!

Installation

pnpm i -D eslint-config-shiny

Create an empty eslint.config.js, if you have "type": "module" specified in your package.json or eslint.config.mjs if not.

import shiny from 'eslint-config-shiny'

export default await shiny()

In use with other frameworks:

import shiny from 'eslint-config-shiny'

export default await shiny({ configs: ['react', 'vitest'] })

With own plugins (legacy):

import shiny from 'eslint-config-shiny'
import unicorn from 'eslint-plugin-unicorn'


export [
    ...await shiny({ configs: ['react'] }),
    {
        rules: {
            ...unicorn.configs.recommended.rules
        }
    }
]

With own plugins (modern):

import shiny from 'eslint-config-shiny'
import prettier from 'eslint-config-prettier'

export [
    ...await shiny({ configs: ['react'] }),
    ...react
]

Important :warning:

  • It's forced to be ESM
  • It's designed to be used with TypeScript specifically
  • It uses the modern flat config
  • It installs a lot of eslint plugins
  • It's written to output performant code. Any plugins that increase readability, but can decrease the performance in any away, will be deactivated.

Supported frameworks

x Angular

x Cypress

x Jest

x Node.js

x React

x Storybook

x TestingLibrary

x Vitest

x Vue

Supported File Formats

x JSON

x TypeScript

Options :sparkles:

Configuration

If you have further questions with the config object, you can use the type ShinyConfig

configs

  • Specify which configuration preset you want to use
  • The preset names are mapped to the profile file names.
  • Possible profiles:
    • angular
    • base
    • cypress
    • format
    • fp
    • jest
    • json
    • node
    • react
    • test-angular
    • test-base
    • test-react
    • test-vue
    • test-web
    • tsdoc
    • vitest
    • vue
    • web
  • Default: ['base']
  • Profiles extend from each other in a tree structure way. You are still allowed to use as many profiles as you want.

ignoreFiles

  • Specifies the ignore files you want to use
  • Default: ['.gitignore', '.eslintignore']

patchVSCode

  • Specifies if you want to patch VSCode to optimize the native linting experience
  • Default: true

prettier

  • Specifies if eslint-config-shiny should look into your prettier config to add stylistic rules
  • Default: true

© Torathion 2024

@angular-eslint/eslint-plugin@angular-eslint/eslint-plugin-template@angular-eslint/template-parser@arthurgeron/eslint-plugin-react-usememo@eslint-react/eslint-plugin@eslint/eslintrc@eslint/js@microsoft/eslint-plugin-sdl@stylistic/eslint-plugin-js@stylistic/eslint-plugin-jsx@stylistic/eslint-plugin-ts@typescript-eslint/eslint-plugin@typescript-eslint/parsereslinteslint-import-resolver-custom-aliaseslint-import-resolver-typescripteslint-plugin-array-funceslint-plugin-compateslint-plugin-cypresseslint-plugin-deprecationeslint-plugin-es-xeslint-plugin-eslint-commentseslint-plugin-functionaleslint-plugin-import-xeslint-plugin-jesteslint-plugin-jest-domeslint-plugin-jest-formattingeslint-plugin-jsoneslint-plugin-json-fileseslint-plugin-jsx-a11yeslint-plugin-neslint-plugin-no-only-testseslint-plugin-package-jsoneslint-plugin-perfectionisteslint-plugin-promiseeslint-plugin-reacteslint-plugin-react-form-fieldseslint-plugin-react-hook-formeslint-plugin-react-hookseslint-plugin-react-perfeslint-plugin-react-prefer-function-componenteslint-plugin-react-reduxeslint-plugin-redundant-undefinedeslint-plugin-regexpeslint-plugin-securityeslint-plugin-sonarjseslint-plugin-ssr-friendlyeslint-plugin-storybookeslint-plugin-styled-components-a11yeslint-plugin-testing-libraryeslint-plugin-tsdoceslint-plugin-unicorneslint-plugin-validate-jsx-nestingeslint-plugin-vitesteslint-plugin-vueeslint-plugin-vue-scoped-csseslint-plugin-vuejs-accessibilityeslint-processor-vue-blocksfdirglobalsjsonc-eslint-parseroravue-eslint-parseryoctocolors
3.0.2

9 days ago

3.0.1

9 days ago

3.0.0

9 days ago

2.4.0

1 month ago

2.3.0

1 month ago

2.2.0

1 month ago

2.1.0

2 months ago

2.0.1

2 months ago

2.0.0

2 months ago

1.1.3

2 months ago

1.1.2

2 months ago

1.1.0

2 months ago

1.1.1

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago