-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy patheslint.config.js
137 lines (136 loc) · 3.48 KB
/
eslint.config.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
const { configs: eslintConfigs } = require("@eslint/js");
const eslintPluginPrettierRecommended = require("eslint-plugin-prettier/recommended");
const globals = require("globals");
const jsxA11y = require("eslint-plugin-jsx-a11y");
const jsdoc = require("eslint-plugin-jsdoc");
const reactRecommended = require("eslint-plugin-react/configs/recommended");
module.exports = [
{
languageOptions: {
globals: {
ga: false,
gas4: false,
...globals.browser,
...globals.node,
...globals.mocha,
...globals.jest,
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
},
// Include recommended linting rules from eslint, react, and prettier
//
// When linting ignore the locally compiled minified JS, other assets, and
// touchpoints JS which is third party code copied into this repo.
{
...eslintConfigs.recommended,
ignores: [
"_site/**/*",
"assets/**/*",
"sass/**/*",
"ga4-data/**/*",
"js/lib/touchpoints_feedback_modal.js",
"js/lib/touchpoints_page_helpful_survey.js",
],
},
{
ignores: [
"_site/**/*",
"assets/**/*",
"sass/**/*",
"ga4-data/**/*",
"js/lib/touchpoints_feedback_modal.js",
"js/lib/touchpoints_page_helpful_survey.js",
],
settings: {
react: {
version: "detect",
},
},
plugins: {
...reactRecommended.plugins,
},
rules: {
...reactRecommended.rules,
},
},
{
plugins: {
"jsx-a11y": jsxA11y,
},
ignores: [
"_site/**/*",
"assets/**/*",
"sass/**/*",
"ga4-data/**/*",
"js/lib/touchpoints_feedback_modal.js",
"js/lib/touchpoints_page_helpful_survey.js",
],
rules: {
...jsxA11y.configs.recommended.rules,
// This doesn't allow anchor tags without HREF attributes, which are
// sometimes required to avoid other accessibility concerns like needing
// non-focusable buttons.
"jsx-a11y/anchor-is-valid": "off",
},
},
{
...eslintPluginPrettierRecommended,
ignores: [
"_site/**/*",
"assets/**/*",
"sass/**/*",
"ga4-data/**/*",
"js/lib/touchpoints_feedback_modal.js",
"js/lib/touchpoints_page_helpful_survey.js",
],
},
{
plugins: {
jsdoc,
},
ignores: [
"_site/**/*",
"assets/**/*",
"sass/**/*",
"ga4-data/**/*",
"js/lib/touchpoints_feedback_modal.js",
"js/lib/touchpoints_page_helpful_survey.js",
"**/__tests__/*.js",
],
rules: {
...jsdoc.configs.recommended.rules,
"jsdoc/check-indentation": "error",
"jsdoc/check-line-alignment": "error",
"jsdoc/check-syntax": "error",
"jsdoc/convert-to-jsdoc-comments": "error",
"jsdoc/no-bad-blocks": "error",
"jsdoc/no-blank-block-descriptions": "error",
"jsdoc/no-blank-blocks": "error",
"jsdoc/require-asterisk-prefix": "error",
"jsdoc/require-jsdoc": [
"error",
{
checkGetters: false,
checkSetters: false,
publicOnly: true,
require: {
ArrowFunctionExpression: true,
ClassDeclaration: true,
ClassExpression: true,
FunctionDeclaration: true,
FunctionExpression: true,
MethodDefinition: true,
},
},
],
"jsdoc/require-throws": "error",
"jsdoc/sort-tags": "error",
"jsdoc/tag-lines": "off",
},
},
];