sync-glob
Version:
Synchronize files and folders locally by glob patterns, watch option included.
23 lines (22 loc) • 601 B
JSON
{
"extends": "airbnb-base",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"classes": true
}
},
"rules": {
"dot-notation": "off",
"max-len": ["warn", 140, 2],
"no-cond-assign": ["error", "except-parens"],
"no-else-return": "warn",
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-use-before-define": ["error", { "functions": false, "classes": false }],
"semi": ["error", "never"],
"quote-props": ["error", "consistent"]
},
"globals": {}
}