UNPKG
@apolitical/eslint-config
Version:
latest (2.1.2)
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.1-rc.1
2.0.0
2.0.0-rc.3
2.0.0-rc.2
2.0.0-rc.1
2.0.0-rc.0
1.0.2
1.0.2-beta.1
1.0.1
1.0.0
1.0.0-beta.0
0.0.1
0.0.1-rc.0
Apolitical ESLint and Prettier configurations for Node projects
@apolitical/eslint-config
/
base.config.js
17 lines
(15 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict'
;
module
.
exports
= {
env
: {
es2021
:
true
,
jest
:
true
, },
parserOptions
: {
ecmaVersion
:
2021
, },
extends
: [
'eslint:recommended'
,
'eslint-config-prettier'
],
rules
: {
'no-return-await'
:
'error'
,
'jest/expect-expect'
:
'off'
, }, };