17 lines
338 B
JSON
17 lines
338 B
JSON
{
|
|
"root": true,
|
|
"parser": "babel-eslint",
|
|
"extends": ["eslint:recommended", "google"],
|
|
"plugins": ["googleappsscript"],
|
|
"env": {
|
|
"googleappsscript/googleappsscript": true
|
|
},
|
|
"globals": {
|
|
"SpreadsheetApp": true,
|
|
"HtmlService": true,
|
|
"global": true
|
|
},
|
|
"rules": {
|
|
"import/prefer-default-export": 0
|
|
}
|
|
} |