mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
18 lines
339 B
JavaScript
18 lines
339 B
JavaScript
module.exports = {
|
|
"extends": "airbnb",
|
|
"plugins": [],
|
|
"rules": {
|
|
"func-names": "off",
|
|
|
|
// doesn't work in node v4 :(
|
|
"strict": "off",
|
|
"prefer-rest-params": "off",
|
|
"react/require-extension" : "off",
|
|
"import/no-extraneous-dependencies" : "off"
|
|
},
|
|
"env": {
|
|
"mocha": true,
|
|
"jest": true
|
|
}
|
|
};
|