On every push and pull request that affects relevant files, and periodically, run eslint on the repository's TypeScript and JavaScript files. eslint is configured via the .eslintrc.yml file: https://eslint.org/docs/user-guide/configuring/configuration-files
5 lines
98 B
JSON
5 lines
98 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"include": ["__tests__/**/*", "src/**/*", "jest.config.js"]
|
|
}
|