mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-01 03:02:32 +00:00
15 lines
390 B
JavaScript
15 lines
390 B
JavaScript
|
const base = require('../base-eslintrc');
|
||
|
|
||
|
// # https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/README.md
|
||
|
module.exports = {
|
||
|
parser: base.parser,
|
||
|
parserOptions: {
|
||
|
tsconfigRootDir: __dirname,
|
||
|
project: ['./tsconfig.json'],
|
||
|
},
|
||
|
plugins: base.plugins,
|
||
|
extends: base.extends,
|
||
|
rules: base.rules,
|
||
|
ignorePatterns: ['lib/**'],
|
||
|
};
|