15 lines
198 B
JSON
15 lines
198 B
JSON
|
|
{
|
||
|
|
"extends": ["eslint:recommended", "google"],
|
||
|
|
"parserOptions": {
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"env": {
|
||
|
|
"browser": true,
|
||
|
|
"es6": true
|
||
|
|
},
|
||
|
|
"rules": {
|
||
|
|
"max-len": [2,120]
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|