File tree Expand file tree Collapse file tree
definitions/output/reports Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434 VALIDATE_JAVASCRIPT_PRETTIER : false
3535 VALIDATE_MARKDOWN_PRETTIER : false
3636 VALIDATE_CHECKOV : false
37+ JAVASCRIPT_ES_CONFIG_FILE : eslint.config.mjs
3738
3839 dependabot :
3940 name : Dependabot auto-merge
Original file line number Diff line number Diff line change 7878 } )
7979 } )
8080} else {
81- iterations . forEach ( ( params , i ) => {
81+ iterations . forEach ( ( params , _ ) => {
8282 metrics . forEach ( metric => {
8383 metric . SQL . forEach ( sql => {
8484 operate ( metric . id + '_' + sql . type + '_' + params . date , {
Original file line number Diff line number Diff line change 1+ export default [
2+ {
3+ languageOptions : {
4+ ecmaVersion : 2021 ,
5+ sourceType : 'module' ,
6+ globals : {
7+ dataform : 'readonly' ,
8+ constants : 'readonly' ,
9+ declare : 'readonly' ,
10+ assert : 'readonly' ,
11+ publish : 'readonly' ,
12+ ctx : 'readonly'
13+ }
14+ } ,
15+ rules : {
16+ // Add any custom rules here if needed
17+ }
18+ }
19+ ]
You can’t perform that action at this time.
0 commit comments