Files
triggerdotdev--trigger.dev/.eslintrc.js
T
2022-12-06 12:28:16 +00:00

15 lines
280 B
JavaScript

module.exports = {
root: true,
// This tells ESLint to load the config from the package `eslint-config-custom`
extends: ["custom"],
settings: {
next: {
rootDir: ["apps/*/"],
},
},
parserOptions: {
sourceType: "module",
ecmaVersion: 2020,
},
};