fix: no longer need to run yarn watch to fix eslint unresolved imports in vs code

pull/2891/head
William Grant 2 years ago
parent 22036000a6
commit db8c309954

@ -2,6 +2,11 @@ module.exports = {
root: true,
settings: {
'import/core-modules': ['electron'],
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
react: {
version: 'detect',
},

@ -1,4 +1,10 @@
const ignoredFiles = ['package.json', 'yarn.lock', 'tsconfig.json', '.lintstagedrc.js'];
const ignoredFiles = [
'package.json',
'yarn.lock',
'tsconfig.json',
'.lintstagedrc.js',
'.eslintrc.js',
];
const path = require('path');

Loading…
Cancel
Save