mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-08 18:39:01 +08:00
Fix crlf line break (#455)
* change line-break rule according to OS * strict comparison
This commit is contained in:
parent
fc7a0a8354
commit
0907ed280b
@ -42,7 +42,7 @@ module.exports = {
|
||||
'@typescript-eslint/explicit-function-return-type': 'error',
|
||||
'@typescript-eslint/no-var-requires': 0,
|
||||
'react/no-array-index-key': 2,
|
||||
'linebreak-style': ['error', 'unix'],
|
||||
'linebreak-style': ['error', process.platform === 'win32' ? 'windows' : 'unix'],
|
||||
|
||||
// simple sort error
|
||||
'simple-import-sort/imports': 'error',
|
||||
|
Loading…
x
Reference in New Issue
Block a user