Skip to main content
Module

x/zipjs/.eslintrc.json

JavaScript library to zip and unzip files in the browser and Deno
Go to Latest
File
{ "env": { "es6": true, "node": false, "browser": false }, "globals": { "console": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaVersion": 2020, "sourceType": "module" }, "ignorePatterns": [ "dist/", "*-inline.js" ], "rules": { "indent": [ "error", "tab", { "SwitchCase": 1 } ], "linebreak-style": [ "error", "unix" ], "quotes": [ "error", "double" ], "semi": [ "error", "always" ], "no-console": [ "warn" ] }}