Disable linebreak rule

This commit is contained in:
Maksim Karasev 2022-06-06 14:28:44 +03:00
parent 0764275a97
commit 0918868dd1
2 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,7 @@ module.exports = {
location: 'anywhere'
}
],
'no-unused-vars': ['error', { varsIgnorePattern: '^_' }]
'no-unused-vars': ['error', { varsIgnorePattern: '^_' }],
"linebreak-style": 0
}
};

View File

@ -58,7 +58,8 @@
],
"location": "anywhere"
}
]
],
"linebreak-style": 0
}
},
"browserslist": {