- Eslint tried to search some configs in the node_modules folder, we ignore node_modules in the eslint config now. - Adapt next eslint to use next/babel.
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['people/jest', 'plugin:import/recommended'],
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
ecmaVersion: 'latest',
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
ignorePatterns: ['node_modules'],
|
|
};
|