peer-calls/.eslintrc
Michael H. Arieli 5ece2ccfe2 Fixed lint testing
Note: had to increase max-len to 400 since <svg> string is long
2018-11-22 17:03:10 -08:00

21 lines
464 B
Plaintext

{
"parser": "babel-eslint",
"extends": ["standard", "standard-react"],
"rules": {
"max-len": [2, 400, 4],
"jsx-quotes": ["error", "prefer-double"],
"padded-blocks": 0,
"import/first": 0,
"no-return-assign": 0
},
"globals": {
"expect": true,
"jest": true,
"jasmine": true,
"it": true,
"beforeEach": true,
"afterEach": true,
"describe": true
}
}