Skip to content

Commit 838b172

Browse files
committed
refactor: rename JSHint extension into JSLint extension
1 parent 37181cd commit 838b172

File tree

7 files changed

+32
-1
lines changed

7 files changed

+32
-1
lines changed

src/extensions/default/DefaultExtensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"JavaScriptCodeHints",
1717
"JavaScriptQuickEdit",
1818
"JavaScriptRefactoring",
19-
"JSHint",
19+
"JSLint",
2020
"MDNDocs",
2121
"Phoenix-prettier",
2222
"PrefsCodeHints",
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* GNU AGPL-3.0 License
3+
*
4+
* Copyright (c) 2021 - present core.ai . All rights reserved.
5+
* Original work Copyright (c) 2012 - 2021 Adobe Systems Incorporated. All rights reserved.
6+
*
7+
* This program is free software: you can redistribute it and/or modify it
8+
* under the terms of the GNU Affero General Public License as published by
9+
* the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* This program is distributed in the hope that it will be useful, but WITHOUT
13+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
15+
* for more details.
16+
*
17+
* You should have received a copy of the GNU Affero General Public License
18+
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
19+
*
20+
*/
21+
22+
// Parts of this file is adapted from https://github.com/cfjedimaster/brackets-jshint
23+
24+
/*global path*/
25+
26+
/**
27+
* Provides JSLint results via the core linting extension point
28+
*/
29+
define(function (require, exports, module) {
30+
require("JSHint");
31+
});
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)