11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
|
|
module.exports = {
|
||
|
|
"extends": "airbnb-base",
|
||
|
|
"plugins": [
|
||
|
|
"import"
|
||
|
|
],
|
||
|
|
"rules": {
|
||
|
|
"strict": [0, "global"],
|
||
|
|
"no-var": "off"
|
||
|
|
}
|
||
|
|
};
|