-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
79 lines (79 loc) · 2.3 KB
/
Copy patheslint.config.js
File metadata and controls
79 lines (79 loc) · 2.3 KB
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
import eslintCspell from '@cspell/eslint-plugin';
import configWebApp, { defineConfig } from 'eslint-config-cityssm';
import { cspellWords } from 'eslint-config-cityssm/exports';
import eslintPluginNoUnsanitized from 'eslint-plugin-no-unsanitized';
const escapedMethods = [
'cityssm.dateToString',
'cityssm.escapeHTML',
'DOMPurify.sanitize',
'exports.shiftLog.buildShiftURL',
'exports.shiftLog.buildWorkOrderURL',
'exports.shiftLog.buildTimesheetURL'
];
export const config = defineConfig(configWebApp, {
files: ['**/*.ts'],
languageOptions: {
parserOptions: {
projectService: true
}
},
plugins: {
'@cspell': eslintCspell,
'no-unsanitized': eslintPluginNoUnsanitized
},
rules: {
'@cspell/spellchecker': [
'warn',
{
cspell: {
words: [
...cspellWords,
'hellip',
'latlng',
'latlngs',
'noopener',
'noreferrer',
'onhidden',
'javascripts',
'radiusless',
'rowspan',
'dateadd',
'datediff',
'datefromparts',
'eomonth',
'ltrim',
'rtrim',
'maint',
'shiftlog',
'timesheet',
'timesheets',
'avanti',
'worktech',
'arcgis',
'ntfy'
]
}
}
],
'@typescript-eslint/no-unsafe-type-assertion': 'off',
'no-unsanitized/method': [
'error',
{
escape: {
methods: escapedMethods
}
}
],
'no-unsanitized/property': [
'error',
{
escape: {
methods: escapedMethods
}
}
],
'require-unicode-regexp': 'off',
'unicorn/no-null': 'off'
}
});
export default config;