mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
12 lines
337 B
JavaScript
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' ],
|
|
},
|
|
},
|
|
);
|