zap.stream/.eslintrc.cjs

15 lines
338 B
JavaScript
Raw Permalink Normal View History

2023-07-20 12:25:21 +00:00
module.exports = {
2023-08-22 21:50:26 +00:00
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
rules: {},
2023-08-22 21:50:26 +00:00
root: true,
ignorePatterns: ["build/", "*.test.ts", "*.js"],
env: {
browser: true,
worker: true,
commonjs: true,
node: false,
},
};