tor-browser

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

.gitignore (3085B)


      1 # VSCode - see .vscode/README.md
      2 .vscode/
      3 
      4 # Build files
      5 /gen/
      6 /out/
      7 /out-wpt/
      8 /out-node/
      9 /out-wpt-reftest-screenshots/
     10 .tscache/
     11 *.tmp.txt
     12 /docs/tsdoc/
     13 
     14 # Cache files
     15 /standalone/data
     16 
     17 # Created by https://www.gitignore.io/api/linux,macos,windows,node
     18 # Edit at https://www.gitignore.io/?templates=linux,macos,windows,node
     19 
     20 ### Linux ###
     21 *~
     22 
     23 # temporary files which can be created if a process still has a handle open of a deleted file
     24 .fuse_hidden*
     25 
     26 # KDE directory preferences
     27 .directory
     28 
     29 # Linux trash folder which might appear on any partition or disk
     30 .Trash-*
     31 
     32 # .nfs files are created when an open file is removed but is still being accessed
     33 .nfs*
     34 
     35 ### macOS ###
     36 # General
     37 .DS_Store
     38 .AppleDouble
     39 .LSOverride
     40 
     41 # Icon must end with two \r
     42 Icon
     43 
     44 # Thumbnails
     45 ._*
     46 
     47 # Files that might appear in the root of a volume
     48 .DocumentRevisions-V100
     49 .fseventsd
     50 .Spotlight-V100
     51 .TemporaryItems
     52 .Trashes
     53 .VolumeIcon.icns
     54 .com.apple.timemachine.donotpresent
     55 
     56 # Directories potentially created on remote AFP share
     57 .AppleDB
     58 .AppleDesktop
     59 Network Trash Folder
     60 Temporary Items
     61 .apdisk
     62 
     63 ### Node ###
     64 # Logs
     65 logs
     66 *.log
     67 npm-debug.log*
     68 yarn-debug.log*
     69 yarn-error.log*
     70 lerna-debug.log*
     71 
     72 # Diagnostic reports (https://nodejs.org/api/report.html)
     73 report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
     74 
     75 # Runtime data
     76 pids
     77 *.pid
     78 *.seed
     79 *.pid.lock
     80 
     81 # Directory for instrumented libs generated by jscoverage/JSCover
     82 lib-cov
     83 
     84 # Coverage directory used by tools like istanbul
     85 coverage
     86 *.lcov
     87 
     88 # nyc test coverage
     89 .nyc_output
     90 
     91 # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
     92 .grunt
     93 
     94 # Bower dependency directory (https://bower.io/)
     95 bower_components
     96 
     97 # node-waf configuration
     98 .lock-wscript
     99 
    100 # Compiled binary addons (https://nodejs.org/api/addons.html)
    101 build/Release
    102 
    103 # Dependency directories
    104 node_modules/
    105 jspm_packages/
    106 
    107 # TypeScript v1 declaration files
    108 typings/
    109 
    110 # TypeScript cache
    111 *.tsbuildinfo
    112 
    113 # Optional npm cache directory
    114 .npm
    115 
    116 # Optional eslint cache
    117 .eslintcache
    118 
    119 # Optional REPL history
    120 .node_repl_history
    121 
    122 # Output of 'npm pack'
    123 *.tgz
    124 
    125 # Yarn Integrity file
    126 .yarn-integrity
    127 
    128 # dotenv environment variables file
    129 .env
    130 .env.test
    131 
    132 # parcel-bundler cache (https://parceljs.org/)
    133 .cache
    134 
    135 # next.js build output
    136 .next
    137 
    138 # nuxt.js build output
    139 .nuxt
    140 
    141 # rollup.js default build output
    142 dist/
    143 
    144 # Uncomment the public line if your project uses Gatsby
    145 # https://nextjs.org/blog/next-9-1#public-directory-support
    146 # https://create-react-app.dev/docs/using-the-public-folder/#docsNav
    147 # public
    148 
    149 # Storybook build outputs
    150 .out
    151 .storybook-out
    152 
    153 # vuepress build output
    154 .vuepress/dist
    155 
    156 # Serverless directories
    157 .serverless/
    158 
    159 # FuseBox cache
    160 .fusebox/
    161 
    162 # DynamoDB Local files
    163 .dynamodb/
    164 
    165 # Temporary folders
    166 tmp/
    167 temp/
    168 
    169 ### Windows ###
    170 # Windows thumbnail cache files
    171 Thumbs.db
    172 Thumbs.db:encryptable
    173 ehthumbs.db
    174 ehthumbs_vista.db
    175 
    176 # Dump file
    177 *.stackdump
    178 
    179 # Folder config file
    180 [Dd]esktop.ini
    181 
    182 # Recycle Bin used on file shares
    183 $RECYCLE.BIN/
    184 
    185 # Windows Installer files
    186 *.cab
    187 *.msi
    188 *.msix
    189 *.msm
    190 *.msp
    191 
    192 # Windows shortcuts
    193 *.lnk
    194 
    195 trace/
    196 
    197 # End of https://www.gitignore.io/api/linux,macos,windows,node