UNPKG
@flizpay-de/eslint
Version:
latest (2.1.30)
2.1.30
2.1.29
2.1.28
2.1.27
2.1.26
2.1.25
2.1.24
2.1.23
2.1.22
2.1.21
2.1.20
2.1.18
2.1.17
2.1.16
2.1.15
2.1.14
2.1.13
2.1.12
2.1.11
2.1.10
2.1.9
2.1.8
2.1.7
2.1.6
2.1.5
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.0
Shared ESLint flat-config for FlizPay projects
@flizpay-de/eslint
/
next.js
11 lines
(7 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
base
from
"./base.js"
;
import
{
FlatCompat
}
from
"@eslint/eslintrc"
;
const
compat =
new
FlatCompat
();
const
nextOverlay = [ ...compat.
extends
(
"next/core-web-vitals"
,
"next/typescript"
), ];
export
default
[...base, ...nextOverlay, {
ignores
: [
"**/.next/**"
] }];