mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
|
/* eslint-env node */
|
||
|
module.exports = {
|
||
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
root: true,
|
||
|
};
|