diff options
author | Matthew Strapp <matt@mattstrapp.net> | 2024-10-31 13:28:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 13:28:18 -0500 |
commit | 9172bb74d2c03c92902136c1831874337ab394dd (patch) | |
tree | 56f73bed76bba4b55ad622a7a0a6af7713899c7f /eslint.config.mjs | |
parent | refactor: Update eslint configuration (diff) | |
download | locusts-9172bb74d2c03c92902136c1831874337ab394dd.tar locusts-9172bb74d2c03c92902136c1831874337ab394dd.tar.gz locusts-9172bb74d2c03c92902136c1831874337ab394dd.tar.bz2 locusts-9172bb74d2c03c92902136c1831874337ab394dd.tar.lz locusts-9172bb74d2c03c92902136c1831874337ab394dd.tar.xz locusts-9172bb74d2c03c92902136c1831874337ab394dd.tar.zst locusts-9172bb74d2c03c92902136c1831874337ab394dd.zip |
feat: Vue (#37)
---------
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | eslint.config.mjs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/eslint.config.mjs b/eslint.config.mjs index fceabb0..8c293ba 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,7 +1,3 @@ -export default { - languageOptions: { - parserOptions: { - project: true, - }, - }, -}; +import library from "@repo/eslint-config/eslint.library.config.js"; + +export default [...library]; |