0d1f38cf85
* Refactor all JS API calls #360 * Remove unused imports * Lint JS * Fix doubled api key * Formatting * Added extra logging to distance lookup * Remove the .editorconfig file in distrib * shell check fixes * Remove the .editorconfig file in distrib
29 lines
431 B
Plaintext
29 lines
431 B
Plaintext
{
|
|
"extends": "airbnb",
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 8
|
|
},
|
|
"rules": {
|
|
"camelcase": 0,
|
|
"no-console": 0,
|
|
"func-names": 0,
|
|
"prefer-object-spread": 0,
|
|
"no-param-reassign": [
|
|
2,
|
|
{
|
|
"props": false
|
|
}
|
|
],
|
|
"import/no-extraneous-dependencies": [
|
|
"error",
|
|
{
|
|
"devDependencies": true
|
|
}
|
|
]
|
|
}
|
|
}
|