mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
13590b9e3d
Summary: It is somewhat overkill to use an entire directory for a single file (the configuration file for JSHint). Instead, rename the directory so that it could (theoretically) be used for other linter configuration files. Test Plan: Ran `arc lint -- webroot/rsrc/js/core/phtize.js` just to make sure everything still works. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9944
22 lines
314 B
Text
22 lines
314 B
Text
{
|
|
"bitwise": true,
|
|
"curly": true,
|
|
"immed": true,
|
|
"indent": 2,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"quotmark": "single",
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
"expr": true,
|
|
"loopfunc": true,
|
|
"sub": true,
|
|
|
|
"globals": {
|
|
"JX": false,
|
|
"__DEV__": false
|
|
},
|
|
"browser": true
|
|
}
|