This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathlinters.js
74 lines (72 loc) · 2.13 KB
/
linters.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module.exports = {
key: "linters",
name: "Linters",
description:
"Linters find potential errors and/or formatting inconsistencies in your code. Some will automatically fix your code for you.",
aka: ["code formatters", "beautifiers", "prettifiers"],
tags: [
{
name: "html",
description: "Formats/beautifies HTML.",
},
{
name: "css",
description: "Formats/beautifies CSS.",
},
{
name: "js",
description: "Formats/beautifies JavaScript.",
},
{
name: "opinionated",
description:
"These don't need configuration because they take a stance on every rule.",
},
{
name: "english",
description: "These lint english - not a programming language.",
},
{
name: "autofix",
description: "These linters will automatically fix your code for you.",
},
{
name: "eslint",
description: "These linters are powered by ESLint",
},
{
name: "typescript",
description: "Linter for TypeScript",
},
],
projects: [
{ url: "https://github.com/palantir/tslint", tags: ["typescript"] },
{
url: "https://github.com/beautify-web/js-beautify",
tags: ["js", "html", "autofix"],
},
{
url: "https://github.com/prettier/prettier",
tags: ["js", "css", "autofix"],
},
{ url: "https://github.com/CSSLint/csslint", tags: ["css"] },
{ url: "https://github.com/csscomb/csscomb.js", tags: ["css"] },
{
url: "https://github.com/standard/standard",
tags: ["js", "opinionated", "eslint", "autofix"],
},
{ url: "https://github.com/douglascrockford/JSLint", tags: ["js"] },
{
url: "https://github.com/eslint/eslint",
tags: ["js", "eslint", "autofix"],
},
{ url: "https://github.com/jshint/jshint", tags: ["js"] },
{ url: "https://github.com/stylelint/stylelint", tags: ["css"] },
{ url: "https://github.com/btford/write-good", tags: ["english"] },
{
url: "https://github.com/xojs/xo",
tags: ["js", "opinionated", "eslint", "autofix"],
},
{ url: "https://github.com/wooorm/alex", tags: ["english"] },
],
};