snort/packages/app/.eslintrc.cjs

14 lines
316 B
JavaScript
Raw Normal View History

2023-02-07 19:47:57 +00:00
module.exports = {
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
root: true,
2023-04-03 09:39:14 +00:00
ignorePatterns: ["build/", "*.test.ts"],
2023-02-07 19:47:57 +00:00
env: {
browser: true,
worker: true,
commonjs: true,
node: true,
},
};