CommunitySolidServer/eslint.config.js
2024-07-19 15:04:09 +02:00

12 lines
337 B
JavaScript

const opinionated = require('opinionated-eslint-config');
module.exports = opinionated(
{
// Don't want to lint test assets, or TS snippets in markdown files
ignores: [ 'test/assets/*', '**/*.md' ],
typescript: {
tsconfigPath: [ './tsconfig.json', './scripts/tsconfig.json', './test/tsconfig.json' ],
},
},
);