deployment-tools
Version:
A Node.js scripts that helps you to compile and deploy the static assets (CSS/JavaScript/images) of your website without gulp and grunt using Node.js and npm scripts
27 lines (26 loc) • 679 B
Plain Text
{
// use babel-eslint parser instead of espree (Esprima) to support Flow syntax
// OR //github.com/gcazaciuc/eslint-plugin-flowtype
"parser": "babel-eslint",
"extends": "airbnb",
"globals": {
"VERSION": true,
"__DEV__": true,
"__PRERELEASE__": true,
},
"rules": {
// use one tab for indent
"indent": [2, "tab"],
// permit alert
"no-alert": [0],
"no-console": [0],
"id-length": [0],
"valid-jsdoc": [2],
"max-len": [0],
"array-callback-return": [0],
"react/require-extension": "off",
"linebreak-style": ["error", "windows"],
"no-tabs": [0],
"generator-star-spacing": [0]
}
}