eslint-plugin-valkyriecoms/.eslintrc.js

16 lines
218 B
JavaScript
Raw Permalink Normal View History

2024-10-02 03:48:26 -07:00
module.exports = {
root: true,
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
env: {
browser: true,
es6: true,
node: true,
},
extends: [
'./configs/recommended',
],
};