remote-form/.eslintrc.json

25 строки
462 B
JSON
Исходник Обычный вид История

2019-03-27 14:33:13 +03:00
{
"extends": [
"plugin:github/es6",
"plugin:github/browser",
"plugin:github/flow"
],
"overrides": [
{
2019-05-13 17:41:41 +03:00
"files": "test/**/*.js",
2019-03-27 14:33:13 +03:00
"rules": {
"flowtype/require-valid-file-annotation": "off",
"github/unescaped-html-literal": "off",
"eslint-comments/no-use": "off"
},
"env": {
"mocha": true
},
"globals": {
2019-05-13 17:41:41 +03:00
"assert": true,
2019-03-27 14:33:13 +03:00
"remoteForm": true
}
}
]
}