File: //data/Geometra-Web-Client-master/.eslintrc
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true,
"experimentalObjectRestSpread": true,
}
},
"plugins": [
"react"],
"rules": {
"quotes": 0,
"no-empty-pattern": 1,
"no-redeclare": 1,
"no-unmodified-loop-condition": 1,
"no-trailing-spaces": 0,
"eol-last": 0,
"no-unused-vars": 1,
"no-underscore-dangle": 0,
"no-alert": 0,
"no-lone-blocks": 1,
"no-use-before-define": 1,
"no-undef": 1,
"camelcase": 1,
"jsx-quotes" : [1, "prefer-single"],
"no-const-assign" : 1,
"prefer-const": 1,
"no-unused-labels": 1,
"no-dupe-class-members": 1,
"no-duplicate-imports": [1, { "includeExports": true }],
"no-var": 1,
"prefer-spread": 1,
"no-useless-call": 1,
"curly": 1,
"react/no-did-mount-set-state" : 1,
"react/no-did-update-set-state" : 1,
"react/no-direct-mutation-state" : 1,
"react/jsx-uses-react": 1,
"react/no-danger": 1,
"react/prefer-es6-class": 1,
"react/prefer-stateless-function": 1,
"react/no-is-mounted": 1,
"react/no-find-dom-node": 1,
"react/no-multi-comp": 1,
"react/jsx-handler-names": 1,
"react/jsx-no-undef": 1,
"react/jsx-no-duplicate-props": 1,
"react/jsx-uses-vars": 1,
"react/react-in-jsx-scope": 1,
"react/require-render-return": 1
}
}