html2canvas/.eslintrc

24 lines
553 B
Plaintext
Raw Normal View History

2017-07-29 05:07:42 +03:00
{
"parser": "babel-eslint",
"plugins": [
2017-08-01 13:51:59 +03:00
"flowtype",
2017-07-29 05:07:42 +03:00
"prettier"
],
"rules": {
2017-09-25 18:01:59 +03:00
"no-console": ["error", { "allow": ["warn", "error"] }],
2017-08-01 13:51:59 +03:00
"flowtype/boolean-style": [
2,
"boolean"
],
"flowtype/no-weak-types": 2,
"flowtype/delimiter-dangle": 2,
2017-07-29 05:07:42 +03:00
"prettier/prettier": ["error", {
"singleQuote": true,
"bracketSpacing": false,
"parser": "flow",
"tabWidth": 4,
"printWidth": 100
}]
}
}