mirror of
https://github.com/Nezumi-2711/javascript-training.git
synced 2026-09-22 20:01:31 +00:00
21 lines
325 B
JSON
21 lines
325 B
JSON
{
|
|
"extends": ["airbnb", "prettier", "plugin:prettier/recommended"],
|
|
"plugins": ["prettier"],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true,
|
|
"jasmine": true
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"endOfLine": "auto"
|
|
}
|
|
]
|
|
},
|
|
"globals": {
|
|
"document": false
|
|
}
|
|
}
|