Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9b7de91

Browse files
authoredMay 9, 2023
Merge branch 'master' into feat/valid-template-root
2 parents e1621ca + d58fb19 commit 9b7de91

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+76
-38
lines changed
 

‎.eslintrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,17 @@ module.exports = {
128128
'unicorn/filename-case': 'off',
129129
'unicorn/no-null': 'off',
130130
'unicorn/no-array-callback-reference': 'off', // doesn't work well with TypeScript's custom type guards
131+
'unicorn/no-negated-condition': 'off', // remove when there are few pull requests (ref: #2146)
131132
'unicorn/no-useless-undefined': 'off',
132133
'unicorn/prefer-optional-catch-binding': 'off', // not supported by current ESLint parser version
133134
'unicorn/prefer-module': 'off',
134135
'unicorn/prevent-abbreviations': 'off',
136+
'unicorn/prefer-at': 'off', // turn off to prevent make breaking changes (ref: #2146)
137+
'unicorn/prefer-node-protocol': 'off', // turn off to prevent make breaking changes (ref: #2146)
138+
'unicorn/prefer-string-replace-all': 'off', // turn off to prevent make breaking changes (ref: #2146)
139+
'unicorn/prefer-ternary': 'off', // remove when there are few pull requests (ref: #2146)
140+
'unicorn/prefer-top-level-await': 'off', // turn off to prevent make breaking changes (ref: #2146)
141+
'unicorn/switch-case-braces': 'off', // remove when there are few pull requests (ref: #2146)
135142

136143
'require-eslint-community': ['error']
137144
},

‎docs/rules/array-bracket-newline.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)
Please sign in to comment.