Initial commit
[e-mobility-charging-stations-simulator.git] / .eslintrc
1 {
2 "parser": "babel-eslint",
3 "extends": [
4 "eslint:recommended",
5 "plugin:flowtype/recommended",
6 "node",
7 "google"
8 ],
9 "plugins": [
10 "flowtype"
11 ],
12 "rules": {
13 "require-jsdoc": 0,
14 "import/no-commonjs": [
15 2,
16 {
17 "allowRequire": true,
18 "allowPrimitiveModules": true
19 }
20 ],
21 "import/no-nodejs-modules": 0,
22 "flowtype/no-types-missing-file-annotation": 0
23 }
24 }