22 lines
365 B
JSON
22 lines
365 B
JSON
|
|
{
|
||
|
|
"env": {
|
||
|
|
"browser": true,
|
||
|
|
"commonjs": true,
|
||
|
|
"es2021": true
|
||
|
|
},
|
||
|
|
"extends": [
|
||
|
|
"airbnb-base",
|
||
|
|
"prettier"
|
||
|
|
],
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 12
|
||
|
|
},
|
||
|
|
"rules": {
|
||
|
|
"prettier/prettier": ["error",{
|
||
|
|
"endOfLine":"auto"
|
||
|
|
}]
|
||
|
|
},
|
||
|
|
"plugins": [
|
||
|
|
"prettier"
|
||
|
|
]
|
||
|
|
}
|