generator-nifty-webapp
Version:
Minimal modern webapp boilerplate using babel and webpack. Based on Nifty Web App (https://github.com/niftymonkey/nifty-webapp)
66 lines (65 loc) • 1.45 kB
Plain Text
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"es6": true,
"modules": true
}
},
"plugins": [],
"env": {
"browser": true,
"node": true,
"es6": true
},
"rules": {
"camelcase": 0,
"quotes": 0,
"no-undef": 2,
"eol-last": 0,
"no-multi-spaces": 2,
"comma-dangle": 0,
"comma-spacing": 0,
"no-mixed-requires": 0,
"no-underscore-dangle": 0,
"no-spaced-func": 2,
"dot-notation": 0,
"space-infix-ops": 2,
"handle-callback-err": 0,
"no-trailing-spaces": 2,
"no-mixed-spaces-and-tabs": 1,
"key-spacing": 2,
"no-new": 1,
"curly": 2,
"no-use-before-define": 2,
"no-shadow": 2,
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"semi-spacing": 2,
"semi": 2,
"strict": 2,
"eqeqeq": 2,
"no-extra-semi": 2,
"space-unary-ops": 2,
"no-regex-spaces": 2,
"no-loop-func": 1,
"no-script-url": 2,
"consistent-return": 0,
"no-unused-expressions": 2,
"no-cond-assign": 1,
"no-else-return": 2,
"no-return-assign": 2,
"no-unreachable": 2,
"no-empty": 2,
"no-redeclare": 2,
"new-cap": 2,
"no-extend-native": 1,
"keyword-spacing": [2, {"after": true}],
"no-inner-declarations": 1,
"no-extra-boolean-cast": 2,
"no-alert": 1,
"no-dupe-keys": 2,
"no-dupe-class-members": 2
}
}