File tree Expand file tree Collapse file tree 9 files changed +92
-72
lines changed Expand file tree Collapse file tree 9 files changed +92
-72
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
3
"extends" : [
4
4
" :ignoreModulesAndTests" ,
5
+ " replacements:all" ,
6
+ " workarounds:all" ,
7
+ " group:allNonMajor" ,
5
8
" group:monorepos" ,
6
9
" group:recommended" ,
7
10
" :automergeAll" ,
10
13
" :prHourlyLimitNone" ,
11
14
" :prConcurrentLimitNone" ,
12
15
" helpers:disableTypesNodeMajor" ,
13
- " workarounds:typesNodeVersioning" ,
14
16
" schedule:weekly"
15
17
],
16
18
"labels" : [" Type: Maintenance" , " :blue_heart:" ],
Original file line number Diff line number Diff line change
1
+ save-prefix = " "
2
+ shamefully-hoist = true
3
+ strict-peer-dependencies = false
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Any donations would be much appreciated. 😄
4
4
5
5
## Enterprise Users
6
6
7
- ` eslint-plugin-functional ` is available as part of the [ Tidelift Subscription] ( https://tidelift.com/subscription/pkg/npm-eslint-plugin-functional?utm_source=npm-eslint-plugin-functional&utm_medium=referral&utm_campaign=enterprise&utm_term=repo ) .
7
+ ` eslint-plugin-functional ` is available as part of the [ Tidelift Subscription] ( https://tidelift.com/subscription/pkg/npm-eslint-plugin-functional ) .
8
8
9
9
## Real money
10
10
@@ -13,23 +13,23 @@ Any donations would be much appreciated. 😄
13
13
## Cryptocurrencies
14
14
15
15
<details >
16
- <summary ><img src =" https://raw.githubusercontent.com/get-icon/geticon/master/icons/bitcoin.svg " height =" 16 " > Bitcoin</summary >
16
+ <summary ><img src =" https://raw.githubusercontent.com/get-icon/geticon/master/icons/bitcoin.svg " height =" 16 " alt = " Bitcoin Logo " > Bitcoin</summary >
17
17
18
18
![ bitcoin address QR code] ( https://raw.githubusercontent.com/RebeccaStevens/RebeccaStevens/main/assets/cryptocurrencies/wallets/bitcoin.png ) \
19
19
bc1qgr2xwvkpztsaq9kplud84r3dfz4g3e7d5c5lxm
20
20
21
21
</details >
22
22
23
23
<details >
24
- <summary ><img src =" https://raw.githubusercontent.com/get-icon/geticon/master/icons/ethereum.svg " height =" 16 " > Ethereum</summary >
24
+ <summary ><img src =" https://raw.githubusercontent.com/get-icon/geticon/master/icons/ethereum.svg " height =" 16 " alt = " Ethereum Logo " > Ethereum</summary >
25
25
26
26
![ ethereum address QR code] ( https://raw.githubusercontent.com/RebeccaStevens/RebeccaStevens/main/assets/cryptocurrencies/wallets/ethereum.png ) \
27
27
0x643769d1DD2Cb912656dAA27C1b97e5A81EF9fd2
28
28
29
29
</details >
30
30
31
31
<details >
32
- <summary ><img src =" https://raw.githubusercontent.com/RebeccaStevens/RebeccaStevens/main/assets/cryptocurrencies/logos/ltc.svg " height =" 16 " > Litecoin</summary >
32
+ <summary ><img src =" https://raw.githubusercontent.com/RebeccaStevens/RebeccaStevens/main/assets/cryptocurrencies/logos/ltc.svg " height =" 16 " alt = " Litecoin Logo " > Litecoin</summary >
33
33
34
34
![ litecoin address QR code] ( https://raw.githubusercontent.com/RebeccaStevens/RebeccaStevens/main/assets/cryptocurrencies/wallets/litecoin.png ) \
35
35
ltc1qxr7p6z4hrh87g9mjjk67chyduwrh2nfrpxksjv
Original file line number Diff line number Diff line change
1
+ $schema : https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
2
+ version : " 0.2"
3
+
4
+ language : en-US
5
+
6
+ dictionaryDefinitions :
7
+ - name : project-dictionary
8
+ path : ./project-dictionary.txt
9
+ addWords : true
10
+
11
+ dictionaries :
12
+ - en_US
13
+ - bash
14
+ - csharp
15
+ - css
16
+ - filetypes
17
+ - fonts
18
+ - html
19
+ - misc
20
+ - node
21
+ - npm
22
+ - softwareTerms
23
+ - typescript
24
+ - project-dictionary
25
+
26
+ ignorePaths :
27
+ - .eslintrc.json
28
+ - .git
29
+ - .gitattributes
30
+ - .gitignore
31
+ - .husky
32
+ - .lintstagedrc.yml
33
+ - .markdownlint.json
34
+ - .npmrc
35
+ - .prettierignore
36
+ - .prettierrc.yml
37
+ - .stylelintrc.json
38
+ - .vscode
39
+ - " *.pdn"
40
+ - CHANGELOG.md
41
+ - coverage
42
+ - coverage
43
+ - cspell.config.yaml
44
+ - dist
45
+ - lib
46
+ - node_modules
47
+ - package.json
48
+ - patches
49
+ - pnpm-lock.yaml
50
+ - project-dictionary.txt
51
+
52
+ ignoreRegExpList :
53
+ - /\b[A-Fa-f0-9]{6}\b/ # ignore hex color codes
54
+ - /\b[A-Za-z0-9]{32,}\b/ # ignore long string of hex characters
55
+ - /`[^`]*`/ # ignore things in `...`
56
+ - /```[\w\W]*?```/ # ignore things in ```...```
57
+
58
+ overrides :
59
+ - filename : " .github/(actions|workflows)/*.yml"
60
+ ignoreRegExpList :
61
+ - /\b(?:[A-Za-z0-9\-_])+\/(?:[A-Za-z0-9\-_])+@v\d+(?:\.\d+){0,2}\b/ui # ignore action
Original file line number Diff line number Diff line change 83
83
"@babel/eslint-parser" : " 7.22.9" ,
84
84
"@commitlint/cli" : " 17.6.7" ,
85
85
"@commitlint/config-conventional" : " 17.6.7" ,
86
- "@cspell/dict-cryptocurrencies" : " 3.0.1" ,
87
86
"@rebeccastevens/eslint-config" : " 2.0.2" ,
88
87
"@rollup/plugin-typescript" : " 11.1.2" ,
89
88
"@semantic-release/changelog" : " 6.0.3" ,
Original file line number Diff line number Diff line change
1
+ automerge
2
+ declarator
3
+ declarators
4
+ deepmerge
5
+ espree
6
+ IIFE
7
+ jonaskello
8
+ Kello
9
+ klass
10
+ knip
11
+ lcov
12
+ litecoin
13
+ noreply
14
+ rebeccastevens
15
+ ruleset
16
+ rulesets
17
+ treeshake
18
+ TSES
Original file line number Diff line number Diff line change @@ -112,14 +112,14 @@ export function getReadonly(
112
112
}
113
113
114
114
const typeRef = getAncestorOfType ( isTSTypeReference , node ) ;
115
- const intHerit = getAncestorOfType ( isTSInterfaceHeritage , node ) ;
115
+ const intHeritage = getAncestorOfType ( isTSInterfaceHeritage , node ) ;
116
116
117
- const expressionOrTypeName = typeRef ?. typeName ?? intHerit ?. expression ;
117
+ const expressionOrTypeName = typeRef ?. typeName ?? intHeritage ?. expression ;
118
118
119
119
return expressionOrTypeName !== undefined &&
120
120
isIdentifier ( expressionOrTypeName ) &&
121
121
expressionOrTypeName . name === "Readonly"
122
- ? typeRef ?? intHerit
122
+ ? typeRef ?? intHeritage
123
123
: null ;
124
124
}
125
125
You can’t perform that action at this time.
0 commit comments