75fc6ac85b
* Add common types and interfaces for Tech Insights. Exposing components needed to use and modify tech-insights-backend module and to implement individual Fact Retrievers, Fact Checkers and their persistence options. * Implement a framework to run fact retrievers and store fact data into the database. Add migration scripts to create a new database for `tech_insights`. * Create a default implementation of a FactChecker enabling users to construct checks and run them and generate scorecards based on checks. * To be able to use tech insights in your application you need to implement `FactRetriever`s to retrieve and return data for facts and register them to the tech-insights-backend. If you want to use fact checking functionality, you need to create `check`s and register them to an implementation of a `FactChecker`. For more information see documentation on the README.md files of the respective packages. Signed-off-by: Jussi Hallila <jussi@hallila.com>
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
module.exports = {
|
|
extends: [require.resolve('@backstage/cli/config/eslint.backend')],
|
|
rules: {
|
|
'jest/expect-expect': [
|
|
'error',
|
|
{
|
|
assertFunctionNames: ['expect', 'request.**.expect'],
|
|
},
|
|
],
|
|
},
|
|
};
|