MyCrypto/.eslintrc.json

41 lines
868 B
JSON
Raw Normal View History

2017-04-11 21:59:11 -07:00
{
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
2017-06-29 16:03:11 -07:00
"plugins": ["react"],
2017-04-11 21:59:11 -07:00
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"browser": true,
"amd": true,
"es6": true,
"node": true,
"jest": true
},
"rules": {
"comma-dangle": 1,
2017-06-29 16:03:11 -07:00
"quotes": [1, "single"],
2017-04-11 21:59:11 -07:00
"no-undef": 1,
"global-strict": 0,
"no-extra-semi": 1,
"no-underscore-dangle": 0,
"no-console": 0,
"no-unused-vars": 0,
"no-constant-condition": 0,
2017-04-11 21:59:11 -07:00
"no-trailing-spaces": [1, { "skipBlankLines": true }],
"no-unreachable": 1,
"no-alert": 0,
"react/jsx-uses-react": 1
2017-06-26 15:27:55 -07:00
},
"globals": {
2017-06-29 16:03:11 -07:00
"SyntheticInputEvent": false,
2017-07-03 16:59:27 -07:00
"SyntheticKeyboardEvent": false,
"Generator": false,
"$Keys": false,
"SyntheticMouseEvent": false
2017-04-11 21:59:11 -07:00
}
}