tor-browser

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

.prettierrc.js (546B)


      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 /* eslint-env node */
      6 
      7 module.exports = {
      8  arrowParens: "avoid",
      9  endOfLine: "lf",
     10  printWidth: 80,
     11  tabWidth: 2,
     12  trailingComma: "es5",
     13  overrides: [
     14    {
     15      files: "*.css",
     16      options: {
     17        parser: "css",
     18        // Using a larger printWidth to avoid wrapping selectors.
     19        printWidth: 160,
     20      },
     21    },
     22  ],
     23 };