UNPKG
@airbnb/config-eslint
Version:
latest (3.1.0)
next (2.0.0-alpha.4)
3.1.0
3.0.0
2.6.0
2.5.2
2.5.1
2.5.0
2.4.0
2.3.0
2.2.2
2.2.1
2.2.0
2.1.0
2.0.2
2.0.1
2.0.0
2.0.0-alpha.4
2.0.0-alpha.3
2.0.0-alpha.2
Reusable ESLint config.
github.com/airbnb/nimbus
airbnb/nimbus
@airbnb/config-eslint
/
lib
/
presets
/
prettier.js
10 lines
(9 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
const
config = {
extends
: [
'prettier'
,
'prettier/react'
],
plugins
: [
'prettier'
],
rules
: {
'prettier/prettier'
:
'error'
, }, };
module
.
exports
= config;