UNPKG
eslint-config-regiojet-next
Version:
latest (1.0.0)
1.0.0
Eslint Typescript rules for Next.js React projects
gitlab.com/Vylda/eslint-config-regiojet-next
eslint-config-regiojet-next
/
rules
/
ignores.mjs
16 lines
(12 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{ ignores }
from
'eslint-config-regiojet-typescript-react'
;
const
config = [ ...ignores, {
ignores
: [
'.next/'
,
'**/next-env.d.ts'
, ],
name
:
'Next specific ignores'
, }, ];
export
default
config;