@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Lint the `webroot/rsrc/externals/javelin` directory

Summary: Fixes T6953. As discussed, this directory //should// be linted.

Test Plan: Ran `arc lint` on a file in `webroot/rsrc/externals/javelin` and saw linter errors.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6953

Differential Revision: https://secure.phabricator.com/D11375

+5 -3
+5 -3
.arclint
··· 1 1 { 2 2 "exclude": [ 3 3 "(^externals/)", 4 - "(^webroot/rsrc/externals/)", 4 + "(^webroot/rsrc/externals/(?!javelin/))", 5 5 "(/__tests__/data/)" 6 6 ], 7 7 "linters": { ··· 25 25 "type": "jshint", 26 26 "include": "(\\.js$)", 27 27 "exclude": [ 28 - "(^support/aphlict/server/.*\\.js$)" 28 + "(^support/aphlict/server/.*\\.js$)", 29 + "(^webroot/rsrc/externals/javelin/core/init_node\\.js$)" 29 30 ], 30 31 "jshint.jshintrc": "support/lint/browser.jshintrc" 31 32 }, 32 33 "jshint-node": { 33 34 "type": "jshint", 34 35 "include": [ 35 - "(^support/aphlict/server/.*\\.js$)" 36 + "(^support/aphlict/server/.*\\.js$)", 37 + "(^webroot/rsrc/externals/javelin/core/init_node\\.js$)" 36 38 ], 37 39 "jshint.jshintrc": "support/lint/node.jshintrc" 38 40 },