mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 14:11:44 +00:00
* refactor: extract codeintellify as new package * feat: add client/codeintellify into lsif-ts Co-authored-by: gitstart-sourcegraph <gitstart@users.noreply.github.com>
20 lines
437 B
JavaScript
20 lines
437 B
JavaScript
// @ts-check
|
|
const baseConfig = require('../../.eslintrc.js')
|
|
module.exports = {
|
|
extends: '../../.eslintrc.js',
|
|
parserOptions: {
|
|
...baseConfig.parserOptions,
|
|
project: [__dirname + '/tsconfig.json'],
|
|
},
|
|
rules: {},
|
|
overrides: [
|
|
...baseConfig.overrides,
|
|
{
|
|
files: ['src/*.test.*', 'src/testutils/**'],
|
|
rules: {
|
|
'import/extensions': ['error', 'never', { html: 'always' }],
|
|
},
|
|
},
|
|
],
|
|
}
|