diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 19:44:41 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 19:44:41 -0500 |
commit | 4e87aba3966e564a38400d257e1cdd2578f18ccf (patch) | |
tree | b2ace636c802a551f936c2791cacbe3abf0bedd6 | |
parent | go: Set go version to 1.0, not 1.0.0 (diff) | |
download | locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.tar locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.tar.gz locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.tar.bz2 locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.tar.lz locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.tar.xz locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.tar.zst locusts-4e87aba3966e564a38400d257e1cdd2578f18ccf.zip |
add global eslintrc
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | .eslintrc.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..1de713c --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,9 @@ +/** @type {import("eslint").Linter.Config} */ +module.exports = { + root: true, + extends: ["@repo/eslint-config/library.js"], + parser: "@typescript-eslint/parser", + parserOptions: { + project: true, + }, +};
\ No newline at end of file |