bpmn-js/lib/.eslintrc
Nico Rehwaldt 8967362df7 chore(project): detect unresolved lint rules
This ensures we don't accidently require files in the lib directory
via the global `lib` import. That stuff works during tests but does
not work in the final bundle.

Considerations: This plugin adds some runtime overhead to our linting
process.
2018-10-26 11:18:37 +00:00

8 lines
89 B
Plaintext

{
"plugins": [
"import"
],
"rules": {
"import/no-unresolved": "error"
}
}