website/.eslintrc.js

10 lines
231 B
JavaScript
Raw Permalink Normal View History

2020-11-27 16:08:32 +00:00
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
2020-11-28 00:39:21 +00:00
plugins: ['@typescript-eslint'],
2020-11-27 16:08:32 +00:00
globals: {
__PATH_PREFIX__: true,
},
2020-11-28 00:39:21 +00:00
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
};