tor-browser

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

.eslintrc.mjs (890B)


      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  {
      7    languageOptions: {
      8      globals: {
      9        // Injected into tests via tps.sys.mjs
     10        Addons: false,
     11        Addresses: false,
     12        Bookmarks: false,
     13        CreditCards: false,
     14        EnableEngines: false,
     15        EnsureTracking: false,
     16        ExtStorage: false,
     17        Formdata: false,
     18        History: false,
     19        Login: false,
     20        Passwords: false,
     21        Phase: false,
     22        Prefs: false,
     23        STATE_DISABLED: false,
     24        STATE_ENABLED: false,
     25        Sync: false,
     26        SYNC_WIPE_CLIENT: false,
     27        SYNC_WIPE_REMOTE: false,
     28        Tabs: false,
     29        Windows: false,
     30        WipeServer: false,
     31      },
     32    },
     33  },
     34 ];