tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

.eslintrc.mjs (848B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 export default [
      6  // When adding items to this file please check for effects on sub-directories.
      7  {
      8    // These files use fluent-dom to insert content
      9    files: ["content/panelUI.js", "test/**"],
     10    rules: {
     11      "jsdoc/check-access": "off",
     12      "jsdoc/check-param-names": "off",
     13      "jsdoc/check-property-names": "off",
     14      "jsdoc/check-tag-names": "off",
     15      "jsdoc/check-types": "off",
     16      "jsdoc/empty-tags": "off",
     17      "jsdoc/no-multi-asterisks": "off",
     18      "jsdoc/require-param-type": "off",
     19      "jsdoc/require-returns-type": "off",
     20      "jsdoc/tag-lines": "off",
     21      "jsdoc/valid-types": "off",
     22    },
     23  },
     24 ];