mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-22 08:36:33 +03:00
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
|
{
|
||
|
"parser": "babel-eslint",
|
||
|
"extends": "eslint:recommended",
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
},
|
||
|
"rules": {
|
||
|
"quotes": [2, "single"],
|
||
|
"no-console": 0,
|
||
|
"comma-spacing": 2,
|
||
|
"comma-style": [2, "last"],
|
||
|
"consistent-return": 2,
|
||
|
"strict": [2, "global"]
|
||
|
}
|
||
|
}
|