1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-15 01:33:41 +12:00
uMatrix/.jshintrc
Raymond Hill 31cc15ca6c
lots of informal fixes
- us integer tab id -- do not stringify anymore
- improved the parsing of hosts files
- better handling of behind-the-scene network requests when a
  context is provided by the webRequest API
- imported webextFlavor code from uBO
- converted instances of object-as-dict to Map()
2018-04-13 10:24:50 -04:00

18 lines
295 B
Plaintext

{
"browser": true,
"devel": true,
"eqeqeq": true,
"esnext": true,
"globals": {
"browser": false, // global variable in Firefox, Edge
"self": false,
"chrome": false,
"vAPI": false,
"µMatrix": false
},
"strict": "global",
"undef": true,
"unused": true,
"validthis": true
}