lndhub/.eslintrc

22 lines
354 B
Plaintext
Raw Normal View History

2018-12-02 22:17:02 +00:00
{
2021-01-04 12:49:42 +00:00
"parser": "@babel/eslint-parser",
2018-12-02 22:17:02 +00:00
"plugins": [
"prettier"
],
"extends": ["plugin:prettier/recommended"],
2018-12-02 22:17:02 +00:00
"rules": {
2021-01-04 12:49:42 +00:00
"prettier/prettier": [
"warn",
2018-12-02 22:17:02 +00:00
{
2021-01-04 12:49:42 +00:00
"singleQuote": true,
"printWidth": 140,
"trailingComma": "all"
2018-12-02 22:17:02 +00:00
}
]
},
"env":{
"es6": true
},
"globals": { "fetch": false }
}