forked from openmrs/openmrs-ocl-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
28 lines (28 loc) · 1012 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": 0,
"no-undef": 0,
"camelcase":"off",
"jsx-a11y/label-has-for":0,
"react/jsx-closing-tag-location":0,
"import/no-named-as-default":0,
"jsx-a11y/anchor-is-valid": 0,
"react/forbid-prop-types": 0,
"class-methods-use-this": "off",
"jsx-a11y/click-events-have-key-events": 0,
"react/destructuring-assignment": 0,
"no-restricted-syntax": 0,
"react/no-access-state-in-setstate": 0,
"jsx-a11y/label-has-associated-control": 0,
"jsx-a11y/no-static-element-interactions": 0,
"compilerOptions": { "target": "ES6", "module": "commonjs" },
"max-len": ["error", { "code": 100, "ignoreStrings": true, "ignoreTemplateLiterals": true }],
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"react/prefer-stateless-function": 0,
"react/sort-comp": 0,
"react/jsx-wrap-multilines": 0,
"react/no-unused-prop-types": 0
},
"parser": "babel-eslint"
}