0.17.1 • Published 8 months ago

@rambler-tech/eslint-config v0.17.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

Shared ESLint v9 config

Install

npm install -D eslint @rambler-tech/eslint-config

or

yarn add -D eslint @rambler-tech/eslint-config

Usage

Included base configs:

  • @rambler-tech/eslint-config - base JavaScript
  • @rambler-tech/eslint-config/semi - base with semicolons and trailing commas

Included special configs:

  • @rambler-tech/eslint-config/ts - TypeScript
  • @rambler-tech/eslint-config/react - React
  • @rambler-tech/eslint-config/next - Next.js

Example eslint.config.mjs for React project:

import { jsConfig } from '@rambler-tech/eslint-config'
import { reactConfig } from '@rambler-tech/eslint-config/react'

export default [...jsConfig, ...reactConfig]

Example eslint.config.mjs for TypeScript project:

import { jsConfig } from '@rambler-tech/eslint-config'
import { tsConfig } from '@rambler-tech/eslint-config/ts'

export default [...jsConfig, ...tsConfig]

Example eslint.config.mjs for TypeScript React project:

import { jsConfig } from '@rambler-tech/eslint-config'
import { reactConfig } from '@rambler-tech/eslint-config/react'
import { tsConfig } from '@rambler-tech/eslint-config/ts'

export default [...jsConfig, ...reactConfig, ...tsConfig]

Example eslint.config.mjs for TypeScript Next.js project:

import { jsConfig } from '@rambler-tech/eslint-config'
import { nextConfig } from '@rambler-tech/eslint-config/next'
import { tsConfig } from '@rambler-tech/eslint-config/ts'

export default [...jsConfig, ...nextConfig, ...tsConfig]

Note that the @rambler-tech/eslint-config/ts should be second to last in the list since it includes @typescript-eslint/parser

0.15.0

9 months ago

0.17.0

8 months ago

0.17.1

8 months ago

0.16.0

8 months ago

0.16.1

8 months ago

0.14.4

12 months ago

0.14.3

1 year ago

0.14.2

1 year ago

0.14.1

1 year ago

0.14.0

1 year ago

0.13.1

2 years ago

0.13.0

2 years ago

0.12.4

2 years ago

0.12.2

2 years ago

0.12.3

2 years ago

0.12.1

2 years ago

0.12.0

2 years ago

0.11.1

2 years ago

0.11.0

2 years ago

0.10.4

2 years ago

0.9.8

2 years ago

0.9.7

2 years ago

0.9.9

2 years ago

0.10.1

2 years ago

0.10.2

2 years ago

0.10.3

2 years ago

0.10.0

2 years ago

0.9.6

2 years ago

0.9.4

2 years ago

0.9.5

2 years ago

0.9.3

2 years ago

0.9.2

2 years ago

0.8.4

2 years ago

0.9.0

2 years ago

0.8.1

2 years ago

0.8.3

2 years ago

0.9.1

2 years ago

0.8.2

2 years ago

0.8.0

2 years ago

0.6.2

2 years ago

0.7.0

2 years ago

0.5.3

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.6.1

2 years ago

0.5.2

2 years ago

0.6.0

2 years ago

0.5.1

2 years ago

0.3.0

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago